Commit 8ce85e5d authored by Theophile Terraz's avatar Theophile Terraz
Browse files

debugs

No related merge requests found
Pipeline #58394 passed with stages
in 3 minutes and 24 seconds
Showing with 6 additions and 4 deletions
+6 -4
......@@ -381,8 +381,6 @@ class MeshingWithMageMailleurTT(AMeshingTool):
st_file = self.export_reach_to_st(reach, tmp)
m_file = st_file.rsplit(".ST", 1)[0] + ".M"
os.sync()
proc = QProcess()
proc.setWorkingDirectory(tmp)
......
......@@ -355,6 +355,8 @@ class EditBoundaryConditionWindow(PamhyrWindow):
q = [((profile.wet_width(z_min + h) * 0.8) * strickler
* (h ** (5/3)) * (abs(incline) ** (0.5)))
for h in height]
for i in range(len(height)):
height[i] += z_min
self._table.replace_data(height, q)
return
......@@ -372,5 +374,7 @@ class EditBoundaryConditionWindow(PamhyrWindow):
q = [sqrt(9.81 * (profile.wet_area(z_min + h) ** 3)
/ profile.wet_width(z_min + h))
for h in height]
for i in range(len(height)):
height[i] += z_min
self._table.replace_data(height, q)
return
......@@ -174,12 +174,12 @@ class PlotH(PamhyrPlot):
self._line.set_data(x, y)
self._current.set_data(
self._current_timestamp,
[self._current_timestamp, self._current_timestamp],
self.canvas.axes.get_ylim()
)
def update_current(self):
self._current.set_data(
self._current_timestamp,
[self._current_timestamp, self._current_timestamp],
self.canvas.axes.get_ylim()
)
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment