@@ -122,7 +122,7 @@ class ProcessType(ExtendedStrEnum):
122
122
False ,
123
123
False ,
124
124
'{run_command} {emod3d_bin} -args "par={lf_sim_dir}/e3d.par"' ,
125
- (),
125
+ (18 , ),
126
126
)
127
127
merge_ts = (
128
128
2 ,
@@ -142,7 +142,7 @@ class ProcessType(ExtendedStrEnum):
142
142
True ,
143
143
"{run_command} python $gmsim/workflow/scripts/hf_sim.py {fd_statlist} {hf_bin_path} -m {hf_vel_mod_1d} --duration "
144
144
"{duration} --dt {dt} --sim_bin {sim_bin_path}" ,
145
- (),
145
+ (18 , ),
146
146
)
147
147
BB = (
148
148
5 ,
@@ -170,9 +170,11 @@ class ProcessType(ExtendedStrEnum):
170
170
LF2BB = 12 , "LF2BB" , None , None , None , (1 ,)
171
171
HF2BB = 13 , "HF2BB" , None , None , None , (4 ,)
172
172
plot_srf = 14 , "plot_srf" , None , False , None , ()
173
-
174
173
# adv_im uses the same base code as IM_calc
175
174
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 ,)
176
178
177
179
def __new__ (
178
180
cls , value , str_value , is_hyperth , uses_acc , command_template , dependencies
0 commit comments