wolfhece 2.1.80__py3-none-any.whl → 2.1.81__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wolfhece/PyGui.py +9 -1
- wolfhece/PyVertexvectors.py +2 -2
- wolfhece/apps/acceptability.py +1 -0
- wolfhece/apps/version.py +1 -1
- wolfhece/gpuview.py +1 -0
- wolfhece/mesh2d/wolf2dprev.py +3 -2
- wolfhece/pyviews.py +8 -1
- wolfhece/wolf_array.py +11 -4
- wolfhece/wolfresults_2D.py +51 -10
- {wolfhece-2.1.80.dist-info → wolfhece-2.1.81.dist-info}/METADATA +1 -1
- {wolfhece-2.1.80.dist-info → wolfhece-2.1.81.dist-info}/RECORD +14 -14
- {wolfhece-2.1.80.dist-info → wolfhece-2.1.81.dist-info}/WHEEL +1 -1
- {wolfhece-2.1.80.dist-info → wolfhece-2.1.81.dist-info}/entry_points.txt +0 -0
- {wolfhece-2.1.80.dist-info → wolfhece-2.1.81.dist-info}/top_level.txt +0 -0
wolfhece/PyGui.py
CHANGED
@@ -875,6 +875,7 @@ class Wolf2DModel(GenMapManager):
|
|
875
875
|
super(Wolf2DModel, self).__init__(*args, **kw)
|
876
876
|
|
877
877
|
self._ref_block = None
|
878
|
+
self._prop_frame = None
|
878
879
|
|
879
880
|
# Gauging stations - SPW
|
880
881
|
self.SPWstations = SPWMIGaugingStations()
|
@@ -957,7 +958,7 @@ class Wolf2DModel(GenMapManager):
|
|
957
958
|
logging.info(_('Creating GUI'))
|
958
959
|
|
959
960
|
# Initilisation d'une simulation 2D sur base des fichiers
|
960
|
-
self.sim = prev_sim2D(self.filenamegen)
|
961
|
+
self.sim:prev_sim2D = prev_sim2D(self.filenamegen)
|
961
962
|
|
962
963
|
# Liste des objets à ajouter au GUI
|
963
964
|
self.fines_array=[]
|
@@ -1185,6 +1186,11 @@ class Wolf2DModel(GenMapManager):
|
|
1185
1186
|
|
1186
1187
|
if self.wx_exists:
|
1187
1188
|
|
1189
|
+
if self._prop_frame is not None:
|
1190
|
+
self._prop_frame.CenterOnScreen()
|
1191
|
+
self._prop_frame.Show()
|
1192
|
+
return
|
1193
|
+
|
1188
1194
|
# Création d'un wx Frame pour les paramètres
|
1189
1195
|
self._prop_frame = wx.Frame(self,
|
1190
1196
|
title=_('Parameters') + self.filenamegen,
|
@@ -1594,6 +1600,8 @@ class Wolf2DModel(GenMapManager):
|
|
1594
1600
|
self.mapviewer.add_object(which='res2d',
|
1595
1601
|
filename=self.filenamegen,
|
1596
1602
|
id='Results')
|
1603
|
+
self.mapviewer.menu_wolf2d()
|
1604
|
+
self.mapviewer.Refresh()
|
1597
1605
|
|
1598
1606
|
def _results2ic(self, e:wx.EVT_BUTTON):
|
1599
1607
|
""" Choose one result as initial conditions """
|
wolfhece/PyVertexvectors.py
CHANGED
@@ -2643,7 +2643,7 @@ class zone:
|
|
2643
2643
|
|
2644
2644
|
if prep:
|
2645
2645
|
if len(self.myvectors) == 0:
|
2646
|
-
logging.
|
2646
|
+
logging.debug(_('No vector in zone -- {}').format(self.myname))
|
2647
2647
|
return
|
2648
2648
|
|
2649
2649
|
try:
|
@@ -2663,7 +2663,7 @@ class zone:
|
|
2663
2663
|
logging.error(_('OpenGL error in zone.plot'))
|
2664
2664
|
else:
|
2665
2665
|
if len(self.myvectors) == 0:
|
2666
|
-
logging.
|
2666
|
+
logging.debug(_('No vector in zone -- {}').format(self.myname))
|
2667
2667
|
return
|
2668
2668
|
|
2669
2669
|
if self.idgllist!=-99999:
|
wolfhece/apps/acceptability.py
CHANGED
wolfhece/apps/version.py
CHANGED
wolfhece/gpuview.py
CHANGED
wolfhece/mesh2d/wolf2dprev.py
CHANGED
@@ -9488,7 +9488,8 @@ class prev_sim2D():
|
|
9488
9488
|
""" Common mask for multiblock arrays """
|
9489
9489
|
|
9490
9490
|
if self.mymnap is not None:
|
9491
|
-
return [cur.array.mask for cur in self.mymnap.myblocks.values()]
|
9491
|
+
# return [cur.array.mask for cur in self.mymnap.myblocks.values()]
|
9492
|
+
return [cur.array.data != 1 for cur in self.mymnap.myblocks.values()]
|
9492
9493
|
else:
|
9493
9494
|
return None
|
9494
9495
|
|
@@ -11101,7 +11102,7 @@ class prev_sim2D():
|
|
11101
11102
|
which = '.' + which
|
11102
11103
|
|
11103
11104
|
if Path(self.filenamegen + which).exists():
|
11104
|
-
myarray =WolfArrayMB()
|
11105
|
+
myarray = WolfArrayMB()
|
11105
11106
|
myarray.set_header(self.get_header_MB())
|
11106
11107
|
myarray.filename = self.filenamegen+which
|
11107
11108
|
myarray.read_data()
|
wolfhece/pyviews.py
CHANGED
@@ -30,6 +30,13 @@ class WolfViews(Element_To_Draw):
|
|
30
30
|
self.view = []
|
31
31
|
self.pals = []
|
32
32
|
|
33
|
+
def delete_lists(self):
|
34
|
+
""" Delete the lists of elements and palettes."""
|
35
|
+
|
36
|
+
for cur in self.view:
|
37
|
+
if isinstance(cur, WolfArray) or isinstance(cur, WolfArrayMB):
|
38
|
+
cur.delete_lists()
|
39
|
+
|
33
40
|
def read_from_file(self, fn):
|
34
41
|
myproject = Wolf_Param(None, filename=fn, toShow=False)
|
35
42
|
|
@@ -236,7 +243,7 @@ class WolfViews(Element_To_Draw):
|
|
236
243
|
cur.mypal.defaultgray_minmax(cur.array)
|
237
244
|
cur.rgb = cur.mypal.get_rgba(cur.array)
|
238
245
|
cur.plot(sx, sy, xmin, ymin, xmax, ymax)
|
239
|
-
elif VERSION_RGB
|
246
|
+
elif VERSION_RGB in [2,3]:
|
240
247
|
if pal is None:
|
241
248
|
# using the current palette
|
242
249
|
cur.plot(sx, sy, xmin, ymin, xmax, ymax)
|
wolfhece/wolf_array.py
CHANGED
@@ -8277,7 +8277,7 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
8277
8277
|
self._tmp_float32 = None
|
8278
8278
|
self.rgb = self.mypal.get_rgba(self.array)
|
8279
8279
|
if self.nbx * self.nby > 1_000_000 : logging.info(_('Colors computed'))
|
8280
|
-
elif VERSION_RGB
|
8280
|
+
elif VERSION_RGB in [2 ,3]:
|
8281
8281
|
if self.wolftype not in [WOLF_ARRAY_FULL_SINGLE,
|
8282
8282
|
WOLF_ARRAY_FULL_INTEGER8,
|
8283
8283
|
WOLF_ARRAY_FULL_INTEGER16,
|
@@ -8993,6 +8993,7 @@ class WolfArrayMB(WolfArray):
|
|
8993
8993
|
|
8994
8994
|
super().__init__(fname, mold, masknull, crop, whichtype, preload, create, mapviewer, nullvalue, srcheader)
|
8995
8995
|
|
8996
|
+
self.mngselection = SelectionDataMB(self)
|
8996
8997
|
self._active_blocks = 0
|
8997
8998
|
|
8998
8999
|
if self.myblocks is None:
|
@@ -9514,8 +9515,8 @@ class WolfArrayMB(WolfArray):
|
|
9514
9515
|
self.mimic_plotdata()
|
9515
9516
|
|
9516
9517
|
# Plot selected nodes
|
9517
|
-
if self.
|
9518
|
-
self.
|
9518
|
+
if self.SelectionData is not None:
|
9519
|
+
self.SelectionData.plot_selection()
|
9519
9520
|
|
9520
9521
|
# Plot zones attached to array
|
9521
9522
|
if self.myops is not None:
|
@@ -10094,7 +10095,13 @@ class WolfArrayMNAP(WolfArrayMB):
|
|
10094
10095
|
myarray.append(newline)
|
10095
10096
|
decal += 1
|
10096
10097
|
|
10097
|
-
curarray.array = np.flipud(np.ma.asarray(myarray, order='F')).transpose()
|
10098
|
+
curarray.array = np.flipud(np.ma.asarray(myarray, order='F', dtype=np.int8)).transpose()
|
10099
|
+
|
10100
|
+
# curarray.array[curarray.array < 0] = 0
|
10101
|
+
|
10102
|
+
assert curarray.dtype == np.int8, "Type de block incorrect"
|
10103
|
+
assert curarray.array.dtype == np.int8
|
10104
|
+
assert curarray.wolftype == WOLF_ARRAY_FULL_INTEGER8, "Type de block incorrect"
|
10098
10105
|
|
10099
10106
|
#Lecture du contour de block
|
10100
10107
|
curzone = zone(name=curkey)
|
wolfhece/wolfresults_2D.py
CHANGED
@@ -2026,6 +2026,19 @@ class OneWolfResult:
|
|
2026
2026
|
|
2027
2027
|
return myval,mylab
|
2028
2028
|
|
2029
|
+
def delete_lists(self):
|
2030
|
+
"""
|
2031
|
+
Reset des listes OpenGL de la matrice/vue courante
|
2032
|
+
"""
|
2033
|
+
|
2034
|
+
if self._which_current in VIEWS_VECTOR_FIELD:
|
2035
|
+
self._view.delete_lists()
|
2036
|
+
elif self._which_current in VIEWS_COMPLEX:
|
2037
|
+
self._view.delete_lists()
|
2038
|
+
else:
|
2039
|
+
self._current.delete_lists()
|
2040
|
+
|
2041
|
+
|
2029
2042
|
class Wolfresults_2D(Element_To_Draw):
|
2030
2043
|
"""
|
2031
2044
|
Manipulation des résultats d'un modèle WOLF2D en multiblocs
|
@@ -2265,7 +2278,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2265
2278
|
""" Common mask for multiblock arrays """
|
2266
2279
|
|
2267
2280
|
if self.mymnap is not None:
|
2268
|
-
return [cur.array.
|
2281
|
+
return [cur.array.data !=1 for cur in self.mymnap.myblocks.values()]
|
2269
2282
|
else:
|
2270
2283
|
return None
|
2271
2284
|
|
@@ -2806,6 +2819,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2806
2819
|
self.mimic_plotdata()
|
2807
2820
|
|
2808
2821
|
if self.mapviewer is not None:
|
2822
|
+
self.reset_plot()
|
2809
2823
|
self.mapviewer.Refresh()
|
2810
2824
|
|
2811
2825
|
def allocate_ressources(self):
|
@@ -4062,14 +4076,14 @@ class Wolfresults_2D(Element_To_Draw):
|
|
4062
4076
|
Retourne la valeur min et max de la topo, de la hauteur d'eau ou de la matrice courante
|
4063
4077
|
"""
|
4064
4078
|
if which == views_2D.TOPOGRAPHY:
|
4065
|
-
min = np.min([np.min(curblock.top.array) for curblock in self.myblocks.values()])
|
4066
|
-
max = np.max([np.max(curblock.top.array) for curblock in self.myblocks.values()])
|
4079
|
+
min = np.ma.min([np.ma.min(curblock.top.array) for curblock in self.myblocks.values()])
|
4080
|
+
max = np.ma.max([np.ma.max(curblock.top.array) for curblock in self.myblocks.values()])
|
4067
4081
|
elif which == views_2D.WATERDEPTH:
|
4068
|
-
min = np.min([np.min(curblock.waterdepth.array) for curblock in self.myblocks.values()])
|
4069
|
-
max = np.max([np.max(curblock.waterdepth.array) for curblock in self.myblocks.values()])
|
4082
|
+
min = np.ma.min([np.ma.min(curblock.waterdepth.array) for curblock in self.myblocks.values()])
|
4083
|
+
max = np.ma.max([np.ma.max(curblock.waterdepth.array) for curblock in self.myblocks.values()])
|
4070
4084
|
elif which == 'current':
|
4071
|
-
min = np.min([np.min(curblock.current.array) for curblock in self.myblocks.values()])
|
4072
|
-
max = np.max([np.max(curblock.current.array) for curblock in self.myblocks.values()])
|
4085
|
+
min = np.ma.min([np.ma.min(curblock.current.array) for curblock in self.myblocks.values()])
|
4086
|
+
max = np.ma.max([np.ma.max(curblock.current.array) for curblock in self.myblocks.values()])
|
4073
4087
|
|
4074
4088
|
return min,max
|
4075
4089
|
|
@@ -4146,7 +4160,7 @@ class Wolfresults_2D(Element_To_Draw):
|
|
4146
4160
|
Reset des listes OpenGL de la matrice courante
|
4147
4161
|
"""
|
4148
4162
|
for curblock in self.myblocks.values():
|
4149
|
-
curblock.
|
4163
|
+
curblock.delete_lists()
|
4150
4164
|
|
4151
4165
|
def mimic_plotdata(self, plotting=False):
|
4152
4166
|
"""
|
@@ -4164,8 +4178,35 @@ class Wolfresults_2D(Element_To_Draw):
|
|
4164
4178
|
"""Dessin OpenGL"""
|
4165
4179
|
self.mimic_plotdata(True)
|
4166
4180
|
|
4167
|
-
|
4168
|
-
|
4181
|
+
if self._which_current_view in VIEWS_COMPLEX:
|
4182
|
+
# FIXME : Force to plot all blocks in complex views.
|
4183
|
+
# There is an issue with GPUVIEW
|
4184
|
+
if self.plotted:
|
4185
|
+
lists = []
|
4186
|
+
pals = []
|
4187
|
+
for i in range(len(self.myblocks[getkeyblock(0)]._view.view)):
|
4188
|
+
lists.append([cur._view.view[i] for cur in self.myblocks.values()])
|
4189
|
+
pals.append([cur._view.pals[i] for cur in self.myblocks.values()])
|
4190
|
+
|
4191
|
+
for curlist, curpal in zip(lists, pals):
|
4192
|
+
for cur, pal in zip(curlist, curpal):
|
4193
|
+
oldplotted = cur.plotted
|
4194
|
+
cur.plotted = True
|
4195
|
+
# force True even if not "plotted",
|
4196
|
+
# we must plot all the arrays in a complex view,
|
4197
|
+
# which can use some objects that are not plotted
|
4198
|
+
# as individual arrays (e.g. Topography)
|
4199
|
+
if pal is None:
|
4200
|
+
cur.plot(sx, sy,xmin,ymin,xmax,ymax,size)
|
4201
|
+
else:
|
4202
|
+
oldpal = cur.mypal
|
4203
|
+
cur.mypal = pal
|
4204
|
+
cur.plot(sx, sy,xmin,ymin,xmax,ymax,size)
|
4205
|
+
cur.mypal = oldpal
|
4206
|
+
cur.plotted = oldplotted
|
4207
|
+
else:
|
4208
|
+
for curblock in self.myblocks.values():
|
4209
|
+
curblock.plot(sx, sy,xmin,ymin,xmax,ymax)
|
4169
4210
|
|
4170
4211
|
if self.myparam is not None:
|
4171
4212
|
#conditions limites faibles
|
@@ -8,7 +8,7 @@ wolfhece/Model1D.py,sha256=SI4oNF_J3MdjiWZoizS8kuRXLMVyymX9dYfYJNVCQVI,476989
|
|
8
8
|
wolfhece/PyConfig.py,sha256=FB8u0belXOXTb03Ln6RdVWvMgjzi3oGPCmw2dWa3lNg,8332
|
9
9
|
wolfhece/PyCrosssections.py,sha256=FnmM9DWY_SAF2EDH9Gu2PojXNtSTRF4-aYQuAAJXBh4,112771
|
10
10
|
wolfhece/PyDraw.py,sha256=Pwjn5TFcO4OgyA1sdKjfnf-xMnXphiqmdih4_gtr19Q,422813
|
11
|
-
wolfhece/PyGui.py,sha256=
|
11
|
+
wolfhece/PyGui.py,sha256=HY0beOMSp1JEyq8-vfVynzVrmKxvaO_sJSMwlNqCNrg,105289
|
12
12
|
wolfhece/PyGuiHydrology.py,sha256=f60E8K9eGTnRq5RDF6yvt-ahf2AYegwQ9t25zZ2Mk1A,14946
|
13
13
|
wolfhece/PyHydrographs.py,sha256=jwtSNMMACwarxrtN1UeQYth99UNrhwPx1IGgUwcooHA,3774
|
14
14
|
wolfhece/PyPalette.py,sha256=3ehK6H2PvqSe0zICR1HyNs6KQokR1DmnAh4LwYnLIcU,28009
|
@@ -16,7 +16,7 @@ wolfhece/PyParams.py,sha256=LGt9uBFRVeS0F_kObJw8bPkWFqYSzf5pUTscxVU5Mxo,97725
|
|
16
16
|
wolfhece/PyPictures.py,sha256=m1kY0saW6Y9Q0bDCo47lW6XxDkBrbQG-Fd8uVn8G5ic,2514
|
17
17
|
wolfhece/PyTranslate.py,sha256=4appkmNeHHZLFmUtaA_k5_5QL-5ymxnbVN4R2OblmtE,622
|
18
18
|
wolfhece/PyVertex.py,sha256=MtZVjIWIi62QX_oqNosb56xPgjhOGVeGz-XsD82tsNg,40614
|
19
|
-
wolfhece/PyVertexvectors.py,sha256=
|
19
|
+
wolfhece/PyVertexvectors.py,sha256=CHeZZ7hYcPf-9ljJSQa8rlDvFB344ZTRCvXM00xoeQ0,238667
|
20
20
|
wolfhece/PyWMS.py,sha256=fyyzm2HFwq8aRwVYHKiBatcZOeKnFi6DWhv4nfscySQ,4602
|
21
21
|
wolfhece/RatingCurve.py,sha256=bUjIrQjvIjkD4V-z8bZmA6pe1ILtYNM0-3fT6YUY1RU,22498
|
22
22
|
wolfhece/RatingCurveData.py,sha256=5UvnIm89BwqjnEbLCcY3CA8WoFd_xHJbooNy62fX5iY,57660
|
@@ -30,7 +30,7 @@ wolfhece/color_constants.py,sha256=Snc5RX11Ydi756EkBp_83C7DiAQ_Z1aHD9jFIBsosAU,3
|
|
30
30
|
wolfhece/drawing_obj.py,sha256=7vY04B6r08nurTTFmBXHyR5tVIF1YzAEw_uz4pqTDIw,4233
|
31
31
|
wolfhece/flow_SPWMI.py,sha256=XDAelwAY-3rYOR0WKW3fgYJ_r8DU4IP6Y5xULW421tk,20956
|
32
32
|
wolfhece/friction_law.py,sha256=MtZJLo-pTj3-Fw-w12z1LSgSIDrH-JGR0iD9wer_fpQ,5498
|
33
|
-
wolfhece/gpuview.py,sha256=
|
33
|
+
wolfhece/gpuview.py,sha256=3QD2GOxbZSsCgGy3krBkH8zBrS5r7oz5KszL2Op8MuY,24142
|
34
34
|
wolfhece/import_ascfiles.py,sha256=6Zl8qBR9c6VtyziookQ8YE9KC0GtW_J9WFt5ubyGp-s,4465
|
35
35
|
wolfhece/ins.py,sha256=0aU1mo4tYbw64Gwzrqbh-NCTH1tukmk0mpPHjRPHZXU,12661
|
36
36
|
wolfhece/irm_qdf.py,sha256=gDuM9sEowQndLTL8vzbZW879M1go2xiKeE4EAJD2bA4,16532
|
@@ -43,18 +43,18 @@ wolfhece/pydike.py,sha256=hPBQsmSTW4QAp1wcOzb-TL3L7eet2WT1sJx2q-WNQ-Q,2241
|
|
43
43
|
wolfhece/pylogging.py,sha256=4TI8hgBB65z-zpvU5Rfa2jkPXPhJaqXjHVPwbcdzTNc,4528
|
44
44
|
wolfhece/pypolygons_scen.py,sha256=x-tnYLNq3MPV51NbaU14trgRj8qyUyOrMdF1zDsUX3I,37444
|
45
45
|
wolfhece/pyshields.py,sha256=7k-qe2EJgr9fJE62jyPmlWQwRj8T0DK4iuMU844ZhYs,23281
|
46
|
-
wolfhece/pyviews.py,sha256=
|
46
|
+
wolfhece/pyviews.py,sha256=lNoK0LydFbQzVzsLEVGj1Ma1ynoXiUHK10yTBeTeL6M,12824
|
47
47
|
wolfhece/pywalous.py,sha256=yRaWJjKckXef1d9D5devP0yFHC9uc6kRV4G5x9PNq9k,18972
|
48
48
|
wolfhece/rain_SPWMI.py,sha256=qCfcmF7LajloOaCwnTrrSMzyME03YyilmRUOqrPrv3U,13846
|
49
49
|
wolfhece/textpillow.py,sha256=map7HsGYML_o5NHRdFg2s_TVQed_lDnpYNDv27MM0Vw,14130
|
50
50
|
wolfhece/tools_mpl.py,sha256=gQ3Jg1iuZiecmMqa5Eli2ZLSkttu68VXL8YmMDBaEYU,564
|
51
|
-
wolfhece/wolf_array.py,sha256=
|
51
|
+
wolfhece/wolf_array.py,sha256=Vw9z4QWUHH0jXG2WXT0k6BaAjsjldppGbOOaY7bEGLU,401353
|
52
52
|
wolfhece/wolf_hist.py,sha256=7jeVrgSkM3ErJO6SRMH_PGzfLjIdw8vTy87kesldggk,3582
|
53
53
|
wolfhece/wolf_texture.py,sha256=DS5eobLxrq9ljyebYfpMSQPn8shkUAZZVfqrOKN_QUU,16951
|
54
54
|
wolfhece/wolf_tiles.py,sha256=2Ho2I20rHRY81KXxjgLOYISdF4OkJ2d6omeY4shDoGI,10386
|
55
55
|
wolfhece/wolf_vrt.py,sha256=89XoDhCJMHiwPQUuOduxtTRKuIa8RDxgNqX65S4xp9M,10569
|
56
56
|
wolfhece/wolf_zi_db.py,sha256=baE0niMCzybWGSvPJc5FNxo9ZxsGfU4p-FmfiavFHAs,12967
|
57
|
-
wolfhece/wolfresults_2D.py,sha256=
|
57
|
+
wolfhece/wolfresults_2D.py,sha256=icmrgbzRn0mMozx1GLrrFJFghzz-MuLgdmi-Kf3vh6Q,169941
|
58
58
|
wolfhece/xyz_file.py,sha256=Se4nCPwYAYLSA5i0zsbnZUKoAMAD0mK1FJea5WSZUkk,5755
|
59
59
|
wolfhece/acceptability/Parallels.py,sha256=h4tu3SpC_hR5Hqa68aruxhtAyhs8u666YuZ40_fR5zg,3979
|
60
60
|
wolfhece/acceptability/__init__.py,sha256=hfgoPKLDpX7drN1Vpvux-_5Lfyc_7feT2C2zQr5v-Os,258
|
@@ -68,13 +68,13 @@ wolfhece/apps/WolfPython.png,sha256=K3dcbeZUiJCFNwOAAlGMaRGLJ56yM8WD2I_0bk0xT1g,
|
|
68
68
|
wolfhece/apps/WolfPython2.png,sha256=VMPV-M-3BCOg8zOJss8bXwPmzRYZy8Fo-XtnVYNgbaw,618073
|
69
69
|
wolfhece/apps/WolfPython3.png,sha256=3G84zx14HnlB9YXMY4VUAO7IB3eu7JFvi4Kpmc_4zBE,403298
|
70
70
|
wolfhece/apps/__init__.py,sha256=OzzKItATWV0mDkz_LC2L3w5sgT2rt8ExXXCbR_FwvlY,24
|
71
|
-
wolfhece/apps/acceptability.py,sha256=
|
71
|
+
wolfhece/apps/acceptability.py,sha256=hMIxTRNQARTTWJJaakb6kEK9udNh-w64VDgxxezVk3k,790
|
72
72
|
wolfhece/apps/check_install.py,sha256=Xoi_d8MzKzNAy2xqEpERdsqgRPu0hbBWukI0WkIYzD0,1701
|
73
73
|
wolfhece/apps/curvedigitizer.py,sha256=Yps4bcayzbsz0AoVc_dkSk35dEhhn_esIBy1Ziefgmk,5334
|
74
74
|
wolfhece/apps/hydrometry.py,sha256=lhhJsFeb4zGL4bNQTs0co85OQ_6ssL1Oy0OUJCzhfYE,656
|
75
75
|
wolfhece/apps/isocurrent.py,sha256=dagmGR8ja9QQ1gwz_8fU-N052hIw-W0mWGVkzLu6C7I,4247
|
76
76
|
wolfhece/apps/splashscreen.py,sha256=SrustmIQeXnsiD-92OzjdGhBi-S7c_j-cSvuX4T6rtg,2929
|
77
|
-
wolfhece/apps/version.py,sha256=
|
77
|
+
wolfhece/apps/version.py,sha256=84BbOWuyjD0m7UKJmKJ4diPd2VS3kshthkwN_wFUto8,388
|
78
78
|
wolfhece/apps/wolf.py,sha256=j_CgvsL8rwixbVvVD5Z0s7m7cHZ86gmFLojKGuetMls,729
|
79
79
|
wolfhece/apps/wolf2D.py,sha256=4z_OPQ3IgaLtjexjMKX9ppvqEYyjFLt1hcfFABy3-jU,703
|
80
80
|
wolfhece/apps/wolf_logo.bmp,sha256=ruJ4MA51CpGO_AYUp_dB4SWKHelvhOvd7Q8NrVOjDJk,3126
|
@@ -220,7 +220,7 @@ wolfhece/mesh2d/bc_manager.py,sha256=QTGkb5TR8Y5xVnGUXPXzscGyTEQ6PA8CZPkVNwrlR1Y
|
|
220
220
|
wolfhece/mesh2d/cell_tracker.py,sha256=mPmnD5lEf3gLPuLqtAIo-Gp-ipAwQdPxzjWOGt0b7jM,8958
|
221
221
|
wolfhece/mesh2d/config_manager.py,sha256=DcdxCIIs_dyC6ayJOBULeY364LONogL9PBaqBtC9eQ4,14736
|
222
222
|
wolfhece/mesh2d/cst_2D_boundary_conditions.py,sha256=Y4DF68uAklF3fXJgf05nb_JvJk2pvzcu_wu5nFXpWJo,5008
|
223
|
-
wolfhece/mesh2d/wolf2dprev.py,sha256=
|
223
|
+
wolfhece/mesh2d/wolf2dprev.py,sha256=kAqRxVlMEkDciEXTgbX6xz6Ck3OqQsSz1IF8NTbnbmM,491575
|
224
224
|
wolfhece/models/5_coul.pal,sha256=OI1UqcNIDBpJn2k_VDel__r-hKjjvdob0eqinGCI3QY,160
|
225
225
|
wolfhece/models/6_coul.pal,sha256=z7NK2dg0tAQBUweRQV54dIwJbPM1U5y1AR2LLw19Idw,148
|
226
226
|
wolfhece/models/7_coul.pal,sha256=XTnnUyCE8ONokScB2YzYDnSTft7E6sppmr7P-XwMsCE,205
|
@@ -284,8 +284,8 @@ wolfhece/ui/wolf_multiselection_collapsiblepane.py,sha256=8PlMYrb_8jI8h9F0_EagpM
|
|
284
284
|
wolfhece/ui/wolf_times_selection_comparison_models.py,sha256=ORy7fz4dcp691qKzaOZHrRLZ0uXNhL-LIHxmpDGL6BI,5007
|
285
285
|
wolfhece/wintab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
286
286
|
wolfhece/wintab/wintab.py,sha256=8A-JNONV6ujgsgG3lM5Uw-pVgglPATwKs86oBzzljoc,7179
|
287
|
-
wolfhece-2.1.
|
288
|
-
wolfhece-2.1.
|
289
|
-
wolfhece-2.1.
|
290
|
-
wolfhece-2.1.
|
291
|
-
wolfhece-2.1.
|
287
|
+
wolfhece-2.1.81.dist-info/METADATA,sha256=82JlbxS-qLm_YgV4kDhs_mxseccct_N3ktWr2kCqQeU,2570
|
288
|
+
wolfhece-2.1.81.dist-info/WHEEL,sha256=Mdi9PDNwEZptOjTlUcAth7XJDFtKrHYaQMPulZeBCiQ,91
|
289
|
+
wolfhece-2.1.81.dist-info/entry_points.txt,sha256=ZZ-aSfbpdcmo-wo84lRFzBN7LaSnD1XRGSaAKVX-Gpc,522
|
290
|
+
wolfhece-2.1.81.dist-info/top_level.txt,sha256=EfqZXMVCn7eILUzx9xsEu2oBbSo9liWPFWjIHik0iCI,9
|
291
|
+
wolfhece-2.1.81.dist-info/RECORD,,
|
File without changes
|
File without changes
|