mirror of https://gitlab.com/pamhyr/pamhyr2
debugs
parent
8e6323ae48
commit
8ce85e5d23
|
|
@ -381,8 +381,6 @@ class MeshingWithMageMailleurTT(AMeshingTool):
|
||||||
st_file = self.export_reach_to_st(reach, tmp)
|
st_file = self.export_reach_to_st(reach, tmp)
|
||||||
m_file = st_file.rsplit(".ST", 1)[0] + ".M"
|
m_file = st_file.rsplit(".ST", 1)[0] + ".M"
|
||||||
|
|
||||||
os.sync()
|
|
||||||
|
|
||||||
proc = QProcess()
|
proc = QProcess()
|
||||||
proc.setWorkingDirectory(tmp)
|
proc.setWorkingDirectory(tmp)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -355,6 +355,8 @@ class EditBoundaryConditionWindow(PamhyrWindow):
|
||||||
q = [((profile.wet_width(z_min + h) * 0.8) * strickler
|
q = [((profile.wet_width(z_min + h) * 0.8) * strickler
|
||||||
* (h ** (5/3)) * (abs(incline) ** (0.5)))
|
* (h ** (5/3)) * (abs(incline) ** (0.5)))
|
||||||
for h in height]
|
for h in height]
|
||||||
|
for i in range(len(height)):
|
||||||
|
height[i] += z_min
|
||||||
self._table.replace_data(height, q)
|
self._table.replace_data(height, q)
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
@ -372,5 +374,7 @@ class EditBoundaryConditionWindow(PamhyrWindow):
|
||||||
q = [sqrt(9.81 * (profile.wet_area(z_min + h) ** 3)
|
q = [sqrt(9.81 * (profile.wet_area(z_min + h) ** 3)
|
||||||
/ profile.wet_width(z_min + h))
|
/ profile.wet_width(z_min + h))
|
||||||
for h in height]
|
for h in height]
|
||||||
|
for i in range(len(height)):
|
||||||
|
height[i] += z_min
|
||||||
self._table.replace_data(height, q)
|
self._table.replace_data(height, q)
|
||||||
return
|
return
|
||||||
|
|
|
||||||
|
|
@ -174,12 +174,12 @@ class PlotH(PamhyrPlot):
|
||||||
self._line.set_data(x, y)
|
self._line.set_data(x, y)
|
||||||
|
|
||||||
self._current.set_data(
|
self._current.set_data(
|
||||||
self._current_timestamp,
|
[self._current_timestamp, self._current_timestamp],
|
||||||
self.canvas.axes.get_ylim()
|
self.canvas.axes.get_ylim()
|
||||||
)
|
)
|
||||||
|
|
||||||
def update_current(self):
|
def update_current(self):
|
||||||
self._current.set_data(
|
self._current.set_data(
|
||||||
self._current_timestamp,
|
[self._current_timestamp, self._current_timestamp],
|
||||||
self.canvas.axes.get_ylim()
|
self.canvas.axes.get_ylim()
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue