Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new tasks #232

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions qcore/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ class ProcessType(ExtendedStrEnum):
False,
False,
'{run_command} {emod3d_bin} -args "par={lf_sim_dir}/e3d.par"',
(),
(18,),
)
merge_ts = (
2,
Expand All @@ -142,7 +142,7 @@ class ProcessType(ExtendedStrEnum):
True,
"{run_command} python $gmsim/workflow/scripts/hf_sim.py {fd_statlist} {hf_bin_path} -m {hf_vel_mod_1d} --duration "
"{duration} --dt {dt} --sim_bin {sim_bin_path}",
(),
(18,),
)
BB = (
5,
Expand Down Expand Up @@ -170,9 +170,11 @@ class ProcessType(ExtendedStrEnum):
LF2BB = 12, "LF2BB", None, None, None, (1,)
HF2BB = 13, "HF2BB", None, None, None, (4,)
plot_srf = 14, "plot_srf", None, False, None, ()

# adv_im uses the same base code as IM_calc
advanced_IM = (15, "advanced_IM") + IM_calculation[2:]
VM_PARAMS = 16, "VM_PARAMS", None, False, None, ()
VM_GEN = 17, "VM_GEN", None, False, None, (16,)
INSTALL_FAULT = 18, "INSTALL_FAULT", None, False, None, (17,)

def __new__(
cls, value, str_value, is_hyperth, uses_acc, command_template, dependencies
Expand Down