mirror of https://gitlab.com/pamhyr/pamhyr2
debug IC
parent
3c3ac1f1df
commit
7c2d9891d0
|
|
@ -395,7 +395,10 @@ class InitialConditions(SQLSubModel):
|
|||
strickler = 25.0
|
||||
|
||||
if not compute_discharge:
|
||||
if profile.rk in data_discharge:
|
||||
discharge = data_discharge[profile.rk]
|
||||
else:
|
||||
discharge = 0.0
|
||||
else:
|
||||
discharge = (
|
||||
# ((width * 0.8)
|
||||
|
|
@ -461,7 +464,10 @@ class InitialConditions(SQLSubModel):
|
|||
strickler = 25.0
|
||||
|
||||
if not compute_height:
|
||||
if profile.rk in data_height:
|
||||
height = data_height[profile.rk]
|
||||
else:
|
||||
height = 0.0
|
||||
else:
|
||||
if abs(incline) <= 0:
|
||||
height = 0.0
|
||||
|
|
@ -513,7 +519,10 @@ class InitialConditions(SQLSubModel):
|
|||
for profile in profiles:
|
||||
|
||||
if not compute_discharge:
|
||||
if profile.rk in data_discharge:
|
||||
d = data_discharge[profile.rk]
|
||||
else:
|
||||
d = 0.0
|
||||
else:
|
||||
d = discharge
|
||||
elevation = interp(profile.rk,
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
<item>
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="text">
|
||||
<string>Upstream height (m)</string>
|
||||
<string>Upstream elevation (m)</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
|
@ -70,7 +70,7 @@
|
|||
<item>
|
||||
<widget class="QLabel" name="label_2">
|
||||
<property name="text">
|
||||
<string>Downstream height (m)</string>
|
||||
<string>Downstream elevation (m)</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
|
|
|||
Loading…
Reference in New Issue