Skip to content

Commit cf8d6f0

Browse files
authored
Merge pull request #232 from ucgmsim/prepro_refactor_jason
new tasks
2 parents 7139d8e + bdc73d0 commit cf8d6f0

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

qcore/constants.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ class ProcessType(ExtendedStrEnum):
122122
False,
123123
False,
124124
'{run_command} {emod3d_bin} -args "par={lf_sim_dir}/e3d.par"',
125-
(),
125+
(18,),
126126
)
127127
merge_ts = (
128128
2,
@@ -142,7 +142,7 @@ class ProcessType(ExtendedStrEnum):
142142
True,
143143
"{run_command} python $gmsim/workflow/scripts/hf_sim.py {fd_statlist} {hf_bin_path} -m {hf_vel_mod_1d} --duration "
144144
"{duration} --dt {dt} --sim_bin {sim_bin_path}",
145-
(),
145+
(18,),
146146
)
147147
BB = (
148148
5,
@@ -170,9 +170,11 @@ class ProcessType(ExtendedStrEnum):
170170
LF2BB = 12, "LF2BB", None, None, None, (1,)
171171
HF2BB = 13, "HF2BB", None, None, None, (4,)
172172
plot_srf = 14, "plot_srf", None, False, None, ()
173-
174173
# adv_im uses the same base code as IM_calc
175174
advanced_IM = (15, "advanced_IM") + IM_calculation[2:]
175+
VM_PARAMS = 16, "VM_PARAMS", None, False, None, ()
176+
VM_GEN = 17, "VM_GEN", None, False, None, (16,)
177+
INSTALL_FAULT = 18, "INSTALL_FAULT", None, False, None, (17,)
176178

177179
def __new__(
178180
cls, value, str_value, is_hyperth, uses_acc, command_template, dependencies

0 commit comments

Comments
 (0)