We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9ee753 commit 484ceceCopy full SHA for 484cece
shot_db_ops.py
@@ -77,6 +77,16 @@ def is_split_unstable(shot):
77
return False
78
79
80
+def is_split_stable(shot):
81
+ IC = sp.shot_params[shot]['ICspeed']
82
+ IR = sp.shot_params[shot]['IRspeed']
83
+ OR = sp.shot_params[shot]['ORspeed']
84
+ OC = sp.shot_params[shot]['OCspeed']
85
+ if OC == OR and IR == 0 and IC == 0 and OC != 0:
86
+ return True
87
+ return False
88
+
89
90
def is_ekman(shot):
91
IC = sp.shot_params[shot]['ICspeed']
92
IR = sp.shot_params[shot]['IRspeed']
0 commit comments