compare_results
Theophile Terraz 2024-09-18 09:20:57 +02:00
parent 8e6323ae48
commit 8ce85e5d23
3 changed files with 6 additions and 4 deletions

View File

@ -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)

View File

@ -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

View File

@ -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()
)