wolfhece 2.0.16__py3-none-any.whl → 2.0.18__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/CpGrid.py +10 -13
- wolfhece/PyCrosssections.py +18 -13
- wolfhece/PyHydrographs.py +2 -2
- wolfhece/PyParams.py +15 -27
- wolfhece/PyPictures.py +48 -45
- wolfhece/PyVertexvectors.py +14 -19
- wolfhece/apps/curvedigitizer.py +4 -1
- wolfhece/apps/wolfcompare2Darrays.py +11 -7
- wolfhece/clientserver/clientserver.py +62 -0
- wolfhece/friction_law.py +39 -34
- wolfhece/ftp/downloader.py +8 -7
- wolfhece/gpuview.py +14 -13
- wolfhece/hydrology/Catchment.py +2 -2
- wolfhece/hydrology/PyWatershed.py +2 -2
- wolfhece/hydrology/SubBasin.py +13 -11
- wolfhece/hydrometry/kiwis_gui.py +9 -9
- wolfhece/irm_qdf.py +12 -10
- wolfhece/mar/Interface_MAR_WOLF_objet.py +260 -161
- wolfhece/opengl/py3d.py +231 -16
- wolfhece/pyshields.py +4 -4
- wolfhece/pythonfortran/example_makendarray.py +46 -41
- wolfhece/pythonfortran/example_numpy_memory.py +87 -83
- wolfhece/pythonfortran/tools.py +1 -1
- wolfhece/scenario/imposebc_void.py +2 -3
- wolfhece/scenario/update_void.py +6 -6
- wolfhece/wolf_array.py +17 -16
- wolfhece/wolfresults_2D.py +2 -4
- {wolfhece-2.0.16.dist-info → wolfhece-2.0.18.dist-info}/METADATA +7 -1
- {wolfhece-2.0.16.dist-info → wolfhece-2.0.18.dist-info}/RECORD +33 -38
- wolfhece/apps/wolfBernoulli.py +0 -18
- wolfhece/bernoulli/ModelJockgrim.py +0 -226
- wolfhece/bernoulli/NetworkOpenGL.py +0 -6461
- wolfhece/bernoulli/ReadNeupotzData.py +0 -223
- wolfhece/bernoulli/opti_results_interactive_plot.py +0 -212
- wolfhece/debug.py +0 -8
- /wolfhece/{bernoulli → clientserver}/__init__.py +0 -0
- {wolfhece-2.0.16.dist-info → wolfhece-2.0.18.dist-info}/WHEEL +0 -0
- {wolfhece-2.0.16.dist-info → wolfhece-2.0.18.dist-info}/entry_points.txt +0 -0
- {wolfhece-2.0.16.dist-info → wolfhece-2.0.18.dist-info}/top_level.txt +0 -0
@@ -2,117 +2,121 @@ import numpy as np
|
|
2
2
|
import ctypes as ct
|
3
3
|
from tools import make_nd_array
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
|
5
|
+
def main():
|
6
|
+
"""
|
7
|
+
Les matrices Numpy gardent-elles le même espace mémoire (buffer) lors des opérations méthématiques ??
|
8
|
+
Une tentative d'analyse sur base de quelques exemples simples ...
|
8
9
|
|
9
|
-
ATTENTION notammment à :
|
10
|
-
|
11
|
-
|
10
|
+
ATTENTION notammment à :
|
11
|
+
- la diférence de comportement entre "a += 3" et "a = a + 3"
|
12
|
+
- la diférence de comportement entre "a[:,:] = a[:,:] + 3" et "a = a + 3"
|
12
13
|
|
13
|
-
Lire : https://numpy.org/doc/stable/reference/ufuncs.html
|
14
|
-
"""
|
15
|
-
a = np.zeros((10,10))
|
16
|
-
b = a # b is an alias --> share memory
|
17
|
-
c = a.copy() # c is a copy --> not share memory
|
14
|
+
Lire : https://numpy.org/doc/stable/reference/ufuncs.html
|
15
|
+
"""
|
16
|
+
a = np.zeros((10,10))
|
17
|
+
b = a # b is an alias --> share memory
|
18
|
+
c = a.copy() # c is a copy --> not share memory
|
18
19
|
|
19
|
-
id_a = id(a) # memory address
|
20
|
-
id_b = id(b) # memory address
|
21
|
-
id_c = id(c) # memory address
|
20
|
+
id_a = id(a) # memory address
|
21
|
+
id_b = id(b) # memory address
|
22
|
+
id_c = id(c) # memory address
|
22
23
|
|
23
|
-
if id(b) == id(a):
|
24
|
-
|
24
|
+
if id(b) == id(a):
|
25
|
+
print('1) a vs b - egalize -- Same memory address')
|
25
26
|
|
26
|
-
if id(c) != id(a):
|
27
|
-
|
27
|
+
if id(c) != id(a):
|
28
|
+
print('2) a vs c - egalize copy -- Not the same memory address')
|
28
29
|
|
29
|
-
c+=4
|
30
|
-
a=c.copy()
|
31
|
-
if id_a != id(c):
|
32
|
-
|
30
|
+
c+=4
|
31
|
+
a=c.copy()
|
32
|
+
if id_a != id(c):
|
33
|
+
print('3) a vs a (from c) - egalize copy -- Not the same memory address')
|
33
34
|
|
34
|
-
# reset
|
35
|
-
a=b
|
35
|
+
# reset
|
36
|
+
a=b
|
36
37
|
|
37
|
-
a += 3
|
38
|
-
id_newa = id(a) # memory address
|
39
|
-
if id_newa == id_a:
|
40
|
-
|
38
|
+
a += 3
|
39
|
+
id_newa = id(a) # memory address
|
40
|
+
if id_newa == id_a:
|
41
|
+
print('4) a vs a - += 3 -- Same memory address')
|
41
42
|
|
42
|
-
a[:,:] = a[:,:] + 3
|
43
|
-
id_newa = id(a) # memory address
|
43
|
+
a[:,:] = a[:,:] + 3
|
44
|
+
id_newa = id(a) # memory address
|
44
45
|
|
45
|
-
if id_newa == id_a:
|
46
|
-
|
46
|
+
if id_newa == id_a:
|
47
|
+
print('5) a vs a - [:,:] + 3 -- Same memory address')
|
47
48
|
|
48
|
-
a = a + 3
|
49
|
-
id_newa2 = id(a) # memory address
|
50
|
-
if id_newa2 != id_a:
|
51
|
-
|
49
|
+
a = a + 3
|
50
|
+
id_newa2 = id(a) # memory address
|
51
|
+
if id_newa2 != id_a:
|
52
|
+
print('6) a vs new_a_2 - = +3 -- Not the same memory address')
|
52
53
|
|
53
|
-
b = a + 3
|
54
|
-
if id(b) != id(a):
|
55
|
-
|
54
|
+
b = a + 3
|
55
|
+
if id(b) != id(a):
|
56
|
+
print('7) a vs b - addition -- Not the same memory address')
|
56
57
|
|
57
|
-
# Adresse mémoire
|
58
|
+
# Adresse mémoire
|
58
59
|
|
59
|
-
a = np.zeros((10,10), dtype=np.float64)
|
60
|
-
mem_a = a.ctypes.data
|
61
|
-
a[:,1:]=3.
|
62
|
-
assert mem_a == a.ctypes.data
|
60
|
+
a = np.zeros((10,10), dtype=np.float64)
|
61
|
+
mem_a = a.ctypes.data
|
62
|
+
a[:,1:]=3.
|
63
|
+
assert mem_a == a.ctypes.data
|
63
64
|
|
64
65
|
|
65
|
-
# Créez deux matrices numpy distinctes avec des buffers mémoire séparés
|
66
|
-
matrix1 = np.array([[1, 2], [3, 4]])
|
67
|
-
matrix2 = np.array([[5, 6], [7, 8]])
|
66
|
+
# Créez deux matrices numpy distinctes avec des buffers mémoire séparés
|
67
|
+
matrix1 = np.array([[1, 2], [3, 4]])
|
68
|
+
matrix2 = np.array([[5, 6], [7, 8]])
|
68
69
|
|
69
|
-
buf_m1 = matrix1.ctypes.data
|
70
|
-
buf_m2 = matrix2.ctypes.data
|
70
|
+
buf_m1 = matrix1.ctypes.data
|
71
|
+
buf_m2 = matrix2.ctypes.data
|
71
72
|
|
72
|
-
# Copiez le contenu de matrix1 dans matrix2 (les buffers de matrix2 ne sont pas affectés)
|
73
|
-
matrix2[:] = matrix1
|
73
|
+
# Copiez le contenu de matrix1 dans matrix2 (les buffers de matrix2 ne sont pas affectés)
|
74
|
+
matrix2[:] = matrix1
|
74
75
|
|
75
|
-
assert buf_m1 == matrix1.ctypes.data
|
76
|
-
assert buf_m2 == matrix2.ctypes.data
|
77
|
-
assert (matrix1 ==matrix2).all()
|
76
|
+
assert buf_m1 == matrix1.ctypes.data
|
77
|
+
assert buf_m2 == matrix2.ctypes.data
|
78
|
+
assert (matrix1 ==matrix2).all()
|
78
79
|
|
79
|
-
matrix1 = np.array([[1, 2], [3, 4]])
|
80
|
-
matrix2 = np.array([[5, 6], [7, 8]])
|
80
|
+
matrix1 = np.array([[1, 2], [3, 4]])
|
81
|
+
matrix2 = np.array([[5, 6], [7, 8]])
|
81
82
|
|
82
|
-
buf_m1 = matrix1.ctypes.data
|
83
|
-
buf_m2 = matrix2.ctypes.data
|
83
|
+
buf_m1 = matrix1.ctypes.data
|
84
|
+
buf_m2 = matrix2.ctypes.data
|
84
85
|
|
85
|
-
# Copiez le contenu de matrix1 dans matrix2 (les buffers de matrix2 ne sont pas affectés)
|
86
|
-
matrix2[:] = matrix1.copy()
|
86
|
+
# Copiez le contenu de matrix1 dans matrix2 (les buffers de matrix2 ne sont pas affectés)
|
87
|
+
matrix2[:] = matrix1.copy()
|
87
88
|
|
88
|
-
assert buf_m1 == matrix1.ctypes.data
|
89
|
-
assert buf_m2 == matrix2.ctypes.data
|
90
|
-
assert (matrix1 ==matrix2).all()
|
89
|
+
assert buf_m1 == matrix1.ctypes.data
|
90
|
+
assert buf_m2 == matrix2.ctypes.data
|
91
|
+
assert (matrix1 ==matrix2).all()
|
91
92
|
|
92
|
-
matrix1 = np.array([[1, 2], [3, 4]])
|
93
|
-
matrix2 = np.array([[5, 6], [7, 8]])
|
93
|
+
matrix1 = np.array([[1, 2], [3, 4]])
|
94
|
+
matrix2 = np.array([[5, 6], [7, 8]])
|
94
95
|
|
95
|
-
buf_m1 = matrix1.ctypes.data
|
96
|
-
buf_m2 = matrix2.ctypes.data
|
96
|
+
buf_m1 = matrix1.ctypes.data
|
97
|
+
buf_m2 = matrix2.ctypes.data
|
97
98
|
|
98
|
-
# Copiez le contenu de matrix1 dans matrix2 (les buffers de matrix2 SONT affectés)
|
99
|
-
matrix2 = matrix1.copy()
|
99
|
+
# Copiez le contenu de matrix1 dans matrix2 (les buffers de matrix2 SONT affectés)
|
100
|
+
matrix2 = matrix1.copy()
|
100
101
|
|
101
|
-
assert buf_m1 == matrix1.ctypes.data
|
102
|
-
assert buf_m2 != matrix2.ctypes.data
|
103
|
-
assert matrix2.ctypes.data != matrix1.ctypes.data
|
104
|
-
assert (matrix1 ==matrix2).all()
|
102
|
+
assert buf_m1 == matrix1.ctypes.data
|
103
|
+
assert buf_m2 != matrix2.ctypes.data
|
104
|
+
assert matrix2.ctypes.data != matrix1.ctypes.data
|
105
|
+
assert (matrix1 ==matrix2).all()
|
105
106
|
|
106
|
-
matrix1 = np.array([[1, 2], [3, 4]])
|
107
|
-
matrix2 = np.array([[5, 6], [7, 8]])
|
107
|
+
matrix1 = np.array([[1, 2], [3, 4]])
|
108
|
+
matrix2 = np.array([[5, 6], [7, 8]])
|
108
109
|
|
109
|
-
buf_m1 = matrix1.ctypes.data
|
110
|
-
buf_m2 = matrix2.ctypes.data
|
110
|
+
buf_m1 = matrix1.ctypes.data
|
111
|
+
buf_m2 = matrix2.ctypes.data
|
111
112
|
|
112
|
-
# Copiez le contenu de matrix1 dans matrix2 (les buffers de matrix2 SONT affectés)
|
113
|
-
matrix2 = matrix1
|
113
|
+
# Copiez le contenu de matrix1 dans matrix2 (les buffers de matrix2 SONT affectés)
|
114
|
+
matrix2 = matrix1
|
114
115
|
|
115
|
-
assert buf_m1 == matrix1.ctypes.data
|
116
|
-
assert buf_m2 != matrix2.ctypes.data
|
117
|
-
assert matrix2.ctypes.data == matrix1.ctypes.data
|
118
|
-
assert (matrix1 ==matrix2).all()
|
116
|
+
assert buf_m1 == matrix1.ctypes.data
|
117
|
+
assert buf_m2 != matrix2.ctypes.data
|
118
|
+
assert matrix2.ctypes.data == matrix1.ctypes.data
|
119
|
+
assert (matrix1 ==matrix2).all()
|
120
|
+
|
121
|
+
if __name__ == "__main__":
|
122
|
+
main()
|
wolfhece/pythonfortran/tools.py
CHANGED
@@ -24,7 +24,7 @@ class Impose_Boundary_Conditions:
|
|
24
24
|
def impose_bc(self, simul:SimpleSimulation):
|
25
25
|
"""
|
26
26
|
FR
|
27
|
-
|
27
|
+
|
28
28
|
Cette fonction doit être particularisée afin d'appliquer des conditions aux limites à la simulation.
|
29
29
|
L'instance de simulation est passée en argument et ne doit pas être créee/modifiée.
|
30
30
|
|
@@ -37,7 +37,7 @@ class Impose_Boundary_Conditions:
|
|
37
37
|
Les directions sont soit "LEFT" ou "BOTTOM". L'énumération d'une cellule (i,j) permet donc d'imposer la condition sur le bord gauche de la cellule (i-1/2,j) et sur le bord bas de la cellule (i,j-1/2).
|
38
38
|
|
39
39
|
EN
|
40
|
-
|
40
|
+
|
41
41
|
This function must be specialized in order to apply boundary conditions to the simulation.
|
42
42
|
The simulation is passed as an argument and must not be created/modified.
|
43
43
|
|
@@ -50,7 +50,6 @@ class Impose_Boundary_Conditions:
|
|
50
50
|
The directions are either "LEFT" or "BOTTOM." Enumerating a cell (i, j) thus imposes the condition on the left edge of cell (i-1/2, j) and on the bottom edge of cell (i, j-1/2).
|
51
51
|
|
52
52
|
Exemple :
|
53
|
-
-------
|
54
53
|
|
55
54
|
# Weak Normal Froude condition (value 0.3) on the left edge of the cell (3,997) -> (3,1002)
|
56
55
|
for j in range(997,1003):
|
wolfhece/scenario/update_void.py
CHANGED
@@ -19,7 +19,7 @@ class Update_Sim:
|
|
19
19
|
def update_topobathy(self, topobahty:WolfArray):
|
20
20
|
"""
|
21
21
|
FR
|
22
|
-
|
22
|
+
|
23
23
|
Cette fonction doit être particularisée afin d'appliquer des modifications
|
24
24
|
à la topographie du lit majeur ou à la bathymétrie du lit mineur.
|
25
25
|
|
@@ -33,7 +33,7 @@ class Update_Sim:
|
|
33
33
|
Il n'est pas permis de remplacer la matrice (création d'une nouvelle matrice et/ou pointage d'una autre matrice). Toutes les operations doivent se faire dans l'esace alloué.
|
34
34
|
|
35
35
|
EN
|
36
|
-
|
36
|
+
|
37
37
|
This function must be customized to apply modifications to the topography of the main bed or the bathymetry of the minor bed.
|
38
38
|
|
39
39
|
The basic information is located in the 'topobahty' parameter ('WolfArray' class).
|
@@ -50,7 +50,7 @@ class Update_Sim:
|
|
50
50
|
def update_manning(self, manning:WolfArray):
|
51
51
|
"""
|
52
52
|
FR
|
53
|
-
|
53
|
+
|
54
54
|
Cette fonction doit être particularisée afin d'appliquer des modifications
|
55
55
|
à la distribution du coefficient de Manning.
|
56
56
|
|
@@ -64,7 +64,7 @@ class Update_Sim:
|
|
64
64
|
Il n'est pas permis de remplacer la matrice (création d'une nouvelle matrice et/ou pointage d'una autre matrice). Toutes les operations doivent se faire dans l'esace alloué.
|
65
65
|
|
66
66
|
EN
|
67
|
-
|
67
|
+
|
68
68
|
This function must be customized to apply modifications to the Manning roughness parameter.
|
69
69
|
|
70
70
|
The basic information is located in the 'manning' parameter ('WolfArray' class).
|
@@ -81,7 +81,7 @@ class Update_Sim:
|
|
81
81
|
def update_infiltration(self, infiltration_zones:WolfArray):
|
82
82
|
"""
|
83
83
|
FR
|
84
|
-
|
84
|
+
|
85
85
|
Cette fonction doit être particularisée afin d'appliquer des modifications
|
86
86
|
à la distribution des zones d'infiltration (matrice en Int32)
|
87
87
|
|
@@ -95,7 +95,7 @@ class Update_Sim:
|
|
95
95
|
Il n'est pas permis de remplacer la matrice (création d'une nouvelle matrice et/ou pointage d'una autre matrice). Toutes les operations doivent se faire dans l'esace alloué.
|
96
96
|
|
97
97
|
EN
|
98
|
-
|
98
|
+
|
99
99
|
This function must be customized to apply modifications to the Infiltration zones parameter.
|
100
100
|
|
101
101
|
The basic information is located in the 'infiltration_zones' parameter ('WolfArray' class).
|
wolfhece/wolf_array.py
CHANGED
@@ -4825,8 +4825,8 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
4825
4825
|
"""
|
4826
4826
|
Return the coordinates inside a polygon
|
4827
4827
|
|
4828
|
-
:param myvect
|
4829
|
-
:param usemask
|
4828
|
+
:param myvect : target vector
|
4829
|
+
:param usemask : limit potential nodes to unmaksed nodes
|
4830
4830
|
"""
|
4831
4831
|
|
4832
4832
|
myvect.find_minmax()
|
@@ -4848,8 +4848,8 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
4848
4848
|
"""
|
4849
4849
|
Return the coordinates along a polyline
|
4850
4850
|
|
4851
|
-
:param myvect
|
4852
|
-
:param usemask
|
4851
|
+
:param myvect : target vector
|
4852
|
+
:param usemask : limit potential nodes to unmaksed nodes
|
4853
4853
|
"""
|
4854
4854
|
|
4855
4855
|
allij = self.get_ij_under_polyline(myvect, usemask)
|
@@ -4861,8 +4861,8 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
4861
4861
|
"""
|
4862
4862
|
Return the indices inside a polygon
|
4863
4863
|
|
4864
|
-
:param myvect
|
4865
|
-
:param usemask
|
4864
|
+
:param myvect : target vector
|
4865
|
+
:param usemask : limit potential nodes to unmaksed nodes
|
4866
4866
|
"""
|
4867
4867
|
|
4868
4868
|
myvect.find_minmax()
|
@@ -4905,8 +4905,8 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
4905
4905
|
"""
|
4906
4906
|
Récupération des valeurs contenues dans un polygone
|
4907
4907
|
|
4908
|
-
usemask (optional) restreint les éléments aux éléments non masqués de la matrice
|
4909
|
-
getxy (optional) retourne en plus les coordonnées des points
|
4908
|
+
:param usemask : (optional) restreint les éléments aux éléments non masqués de la matrice
|
4909
|
+
:param getxy : (optional) retourne en plus les coordonnées des points
|
4910
4910
|
"""
|
4911
4911
|
mypoints = self.get_xy_inside_polygon(myvect, usemask)
|
4912
4912
|
myvalues = np.asarray([self.get_value(cur[0], cur[1]) for cur in mypoints])
|
@@ -4920,8 +4920,8 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
4920
4920
|
"""
|
4921
4921
|
Récupération des valeurs contenues sous une polyligne
|
4922
4922
|
|
4923
|
-
usemask (optional) restreint les éléments aux éléments non masqués de la matrice
|
4924
|
-
getxy (optional) retourne en plus les coordonnées des points
|
4923
|
+
:param usemask : (optional) restreint les éléments aux éléments non masqués de la matrice
|
4924
|
+
:param getxy : (optional) retourne en plus les coordonnées des points
|
4925
4925
|
"""
|
4926
4926
|
mypoints = self.get_xy_under_polyline(myvect, usemask)
|
4927
4927
|
|
@@ -4936,8 +4936,8 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
4936
4936
|
"""
|
4937
4937
|
Récupération de toutes les valeurs contenues dans un polygone
|
4938
4938
|
|
4939
|
-
usemask (optional) restreint les éléments aux éléments non masqués de la matrice
|
4940
|
-
getxy (optional) retourne en plus les coordonnées des points
|
4939
|
+
:param usemask : (optional) restreint les éléments aux éléments non masqués de la matrice
|
4940
|
+
:param getxy : (optional) retourne en plus les coordonnées des points
|
4941
4941
|
|
4942
4942
|
ICI on retourne le résultat de get_values_insidepoly, car une seule matrice, mais une autre classe pourrait vouloir faure autre chose
|
4943
4943
|
C'est le cas notamment de Wolfresults_2D
|
@@ -4949,8 +4949,8 @@ class WolfArray(Element_To_Draw, header_wolf):
|
|
4949
4949
|
"""
|
4950
4950
|
Récupération de toutes les valeurs sous la polyligne
|
4951
4951
|
|
4952
|
-
usemask (optional) restreint les éléments aux éléments non masqués de la matrice
|
4953
|
-
getxy (optional) retourne en plus les coordonnées des points
|
4952
|
+
:param usemask : (optional) restreint les éléments aux éléments non masqués de la matrice
|
4953
|
+
:param getxy : (optional) retourne en plus les coordonnées des points
|
4954
4954
|
|
4955
4955
|
ICI on retourne le résultat de get_values_underpoly, car une seule matrice, mais une autre classe pourrait vouloir faure autre chose
|
4956
4956
|
C'est le cas notamment de Wolfresults_2D
|
@@ -6931,8 +6931,9 @@ class WolfArrayMNAP(WolfArrayMB):
|
|
6931
6931
|
class WolfArray_Sim2D(WolfArray):
|
6932
6932
|
"""
|
6933
6933
|
Surcharge de WolfArray pour les matrices fines de simulation
|
6934
|
-
|
6935
|
-
|
6934
|
+
|
6935
|
+
Objectif : lier la matrice de mask à une source commune
|
6936
|
+
|
6936
6937
|
"""
|
6937
6938
|
def __init__(self,
|
6938
6939
|
fname:str=None,
|
wolfhece/wolfresults_2D.py
CHANGED
@@ -2723,10 +2723,8 @@ class Wolfresults_2D(Element_To_Draw):
|
|
2723
2723
|
|
2724
2724
|
which_block : numéro du bloc; 1-based;
|
2725
2725
|
|
2726
|
-
|
2727
|
-
|
2728
|
-
Les indices sont passés comme WOLF --> en numérottaion Fortran (démarrage à 1 et non à 0)
|
2729
|
-
***
|
2726
|
+
ATTENTION : Les indices sont passés comme WOLF --> en numérottaion Fortran (démarrage à 1 et non à 0)
|
2727
|
+
|
2730
2728
|
"""
|
2731
2729
|
k=-1
|
2732
2730
|
e=-1
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: wolfhece
|
3
|
-
Version: 2.0.
|
3
|
+
Version: 2.0.18
|
4
4
|
Author-email: Stéphane Champailler <stephane.champailler@uliege.be>, Pierre Archambeau <pierre.archambeau@uliege.be>
|
5
5
|
Project-URL: Homepage, https://uee.uliege.be/hece
|
6
6
|
Project-URL: Issues, https://uee.uliege.be/hece
|
@@ -53,6 +53,12 @@ Requires-Dist: h5py
|
|
53
53
|
Requires-Dist: basemap
|
54
54
|
Requires-Dist: exif
|
55
55
|
Requires-Dist: pyglm
|
56
|
+
Requires-Dist: mqtt
|
57
|
+
Requires-Dist: wradlib
|
58
|
+
Requires-Dist: seaborn
|
59
|
+
Requires-Dist: autograd
|
60
|
+
Requires-Dist: plyfile
|
61
|
+
Requires-Dist: tabulate
|
56
62
|
|
57
63
|
Ce paquet contient l'interface graphique Python du logiciel WOLF (HECE - ULiège) de même que plusieurs outils de traitements topographique, hydraulique et hydrologique.
|
58
64
|
|
@@ -1,20 +1,20 @@
|
|
1
|
-
wolfhece/CpGrid.py,sha256=
|
1
|
+
wolfhece/CpGrid.py,sha256=ke4n1khTUoed2asJl1GR25PsEkI4TpiBDCo4u0aSo9M,10658
|
2
2
|
wolfhece/GraphNotebook.py,sha256=06u2oiTAfLtwK_mlmyEAKusTdK9jE_LcMrHhUe_YrrE,27658
|
3
3
|
wolfhece/GraphProfile.py,sha256=nP8xnwUBw2EIxfI7YysuWbwA7-sTZeONUMPkIVimOyg,68909
|
4
4
|
wolfhece/Lidar2002.py,sha256=sXZ6p8_EKI5l8fJswIMAABT6dqHKVexU52Tjl1uuisU,5770
|
5
5
|
wolfhece/ManageParams.py,sha256=Wgt5Zh7QBtyiwTAltPHunSLqt4XuVuRH76GTUrXabS4,219
|
6
6
|
wolfhece/PyConfig.py,sha256=oGSL1WsLM9uinlNP4zGBLK3uHPmBfduUi7R-VtWuRFA,8034
|
7
|
-
wolfhece/PyCrosssections.py,sha256=
|
7
|
+
wolfhece/PyCrosssections.py,sha256=wdq-KYaLDBAa-gu3plWFBJN0Stx-oZX2dxs-iKjGBHo,111109
|
8
8
|
wolfhece/PyDraw.py,sha256=DYiV9eUq6bXPpqQEl8w-WH45pAqLY5U2Hl0XZW9T7Zk,300264
|
9
9
|
wolfhece/PyGui.py,sha256=mzJCRjMHtebFrxmPnwUK6YpQgMf5iiiCTm0hCOuRsOY,52722
|
10
10
|
wolfhece/PyGuiHydrology.py,sha256=t7EqOMyA1mkVg_aATMaduR-aqs04V-uRCifyHVmPqRs,7133
|
11
|
-
wolfhece/PyHydrographs.py,sha256=
|
11
|
+
wolfhece/PyHydrographs.py,sha256=h2OfgmRkKc5XZn0iPFOVy60pGTSa5EFoUOEya0SeG7o,3411
|
12
12
|
wolfhece/PyPalette.py,sha256=nb9oPLZF-xx-yvOWvw2XVVmis6XTmYT2i7hvH3qPwAg,21932
|
13
|
-
wolfhece/PyParams.py,sha256=
|
14
|
-
wolfhece/PyPictures.py,sha256
|
13
|
+
wolfhece/PyParams.py,sha256=RqeIWvvKZ6LK5q6QK4k6SIRci4qVgLejnVR45sDS9iw,77211
|
14
|
+
wolfhece/PyPictures.py,sha256=-mJB0JL2YYiEK3D7_ssDkvYiMWK4ve9kXhozQXNeSx8,2216
|
15
15
|
wolfhece/PyTranslate.py,sha256=4appkmNeHHZLFmUtaA_k5_5QL-5ymxnbVN4R2OblmtE,622
|
16
16
|
wolfhece/PyVertex.py,sha256=nqQhfg4RFn4iGenJf6BMsnPB-fNFjnXqVeUi39BhEWc,30512
|
17
|
-
wolfhece/PyVertexvectors.py,sha256=
|
17
|
+
wolfhece/PyVertexvectors.py,sha256=T5or2zgEy1Z6-DsrwJmRvsHo_fmcCiqNHAtrBBaV0wk,189557
|
18
18
|
wolfhece/PyWMS.py,sha256=t6jVZpTxTNSLJxABk8A79cEMWTKoRM_S_SXRipsHLzw,4493
|
19
19
|
wolfhece/RatingCurve.py,sha256=Psw4OknvqVXOjIomJxCW4hGd_q2HZ4DmcwV-wJXehds,21420
|
20
20
|
wolfhece/RatingCurveData.py,sha256=5UvnIm89BwqjnEbLCcY3CA8WoFd_xHJbooNy62fX5iY,57660
|
@@ -25,54 +25,49 @@ wolfhece/__init__.py,sha256=FRDE8PiJAWxX9PMXsShRMZ8YADAY4WIgKMRh52rmhiw,23
|
|
25
25
|
wolfhece/_add_path.py,sha256=nudniS-lsgHwXXq5o626XRDzIeYj76GoGKYt6lcu2Nc,616
|
26
26
|
wolfhece/cli.py,sha256=Xj0yfgs7MnvNCk5Td_Qp_oz4DMI66eBHu2bkVrGW3OU,1828
|
27
27
|
wolfhece/color_constants.py,sha256=Snc5RX11Ydi756EkBp_83C7DiAQ_Z1aHD9jFIBsosAU,37121
|
28
|
-
wolfhece/debug.py,sha256=Q6uXHer1fxrVf0UYWUmYmxNt1QRppEHyAEeCO1syhDw,122
|
29
28
|
wolfhece/drawing_obj.py,sha256=rHMGdiihIv68WZnWFNdgiA51QhSm8EX-pykdyTSOdoo,3136
|
30
29
|
wolfhece/flow_SPWMI.py,sha256=mdiupyOem6_FZ0OSKn8Vq5Nmr9Av-j83d2YyRPLZFlQ,20658
|
31
|
-
wolfhece/friction_law.py,sha256=
|
32
|
-
wolfhece/gpuview.py,sha256=
|
30
|
+
wolfhece/friction_law.py,sha256=vMr6BgVVV2JqhPDjBtZBtosDIZcbykZxw-fKxiJzd4M,5200
|
31
|
+
wolfhece/gpuview.py,sha256=Lq17jV2ytQShUuvi1UE_A1-6Q0IojsKxrKhkYHRf_8w,23437
|
33
32
|
wolfhece/import_ascfiles.py,sha256=jg4urcLdSgFS1Knvh7AVGJqM44qc_uYDNrR568tMh-A,4167
|
34
33
|
wolfhece/ins.py,sha256=0aU1mo4tYbw64Gwzrqbh-NCTH1tukmk0mpPHjRPHZXU,12661
|
35
|
-
wolfhece/irm_qdf.py,sha256=
|
34
|
+
wolfhece/irm_qdf.py,sha256=0nOU_usEZuWMwYOPV9qtZoWsQTn2x2DxOuk7VlYMkbo,15419
|
36
35
|
wolfhece/ismember.py,sha256=fkLvaH9fhx-p0QrlEzqa6ySO-ios3ysjAgXVXzLgSpY,2482
|
37
36
|
wolfhece/multiprojects.py,sha256=fnv19sDntJFt3fNMre18-Io14MsRazbFIML4MIxuDgU,13895
|
38
37
|
wolfhece/pybridges.py,sha256=BVUESKoTdL1i_rdoe_jEsItgjKS0oqLohwrHj8snjxQ,57190
|
39
38
|
wolfhece/pydike.py,sha256=G4jfSZaAHHr4VWEJqnXSvEswXvlOz1yhbhQ6uu3AqyM,1943
|
40
39
|
wolfhece/pylogging.py,sha256=i9Zugx3t9dPc7nBwcP20L_R4_k_WawpAQsvbZU8l9Hg,4230
|
41
40
|
wolfhece/pypolygons_scen.py,sha256=lrUty990vT1iiILiIuTY8pNStiaZOi2dXWJuL9C-4Ps,26211
|
42
|
-
wolfhece/pyshields.py,sha256=
|
41
|
+
wolfhece/pyshields.py,sha256=LlFxcCkWywbsf2_6AaMU0Vgbm5h92AKqb4NyYT6kBYE,22219
|
43
42
|
wolfhece/pyviews.py,sha256=hYdyrEvWF48dGBDOLIwmC28C0L8I28U4ohXk9nltF94,9666
|
44
43
|
wolfhece/pywalous.py,sha256=jwp251AzGBc0VmMzOqA0IJiRRa6yQIfccRM8lVGszIY,4474
|
45
44
|
wolfhece/rain_SPWMI.py,sha256=YqsF-yFro3y_a6MfVRFfr-Rxi7NR1gl_i8VX7scmzes,13548
|
46
45
|
wolfhece/textpillow.py,sha256=YJxF4JzPv3G1oqenJgWVYq3OPZx9iFtrmeIfvBwbJVU,8735
|
47
46
|
wolfhece/tools_mpl.py,sha256=q8Yc4aukPPiUcEzREvZRM_em67XqXaahdoaNt0DETfE,266
|
48
|
-
wolfhece/wolf_array.py,sha256=
|
47
|
+
wolfhece/wolf_array.py,sha256=BAdO9j_ilDbzJ_Awrqnxz0kKL3zML0Z8eCSkY_M8IQM,280195
|
49
48
|
wolfhece/wolf_hist.py,sha256=JpRXvzJLUP-RkSkvth3DQWglgTMFI2ZEUDb4RYOfeeI,3284
|
50
49
|
wolfhece/wolf_texture.py,sha256=quflEvi32lWSvOPa0aDCDl-8Jv-jGtLHbR2rdx67LsI,14883
|
51
50
|
wolfhece/wolf_tiles.py,sha256=F2JsJHdAP8fIffNJdG_J26bonCIRtIwMmxKFqdSCRDA,10088
|
52
51
|
wolfhece/wolf_vrt.py,sha256=wuMPAXNYTByNGNtvWhwW1fQelPstAPTQZECgXHZ0oTM,5180
|
53
|
-
wolfhece/wolfresults_2D.py,sha256=
|
52
|
+
wolfhece/wolfresults_2D.py,sha256=atr207mDneggZDG4D_eWKnsSDZ2i8rWOGBv9ECQ487I,144169
|
54
53
|
wolfhece/xyz_file.py,sha256=aQOcTHkHRhXHxL_WxTHwzygp6e47San7SHSpxKQU0dw,5457
|
55
54
|
wolfhece/apps/ManageParams.py,sha256=its7JhceQiwzQVl95wA51GZs1zjtbpUNvbqvdvDTeyM,316
|
56
55
|
wolfhece/apps/Optimisation_hydro.py,sha256=25H5PVN_Gh3mkDQ6BWbJjBqsGCNdGapZOqKECcOGJIQ,398
|
57
56
|
wolfhece/apps/WolfPython.png,sha256=K3dcbeZUiJCFNwOAAlGMaRGLJ56yM8WD2I_0bk0xT1g,104622
|
58
57
|
wolfhece/apps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
59
|
-
wolfhece/apps/curvedigitizer.py,sha256=
|
58
|
+
wolfhece/apps/curvedigitizer.py,sha256=JC2SW4n3-QFrnpmm0Zn0Yqog2SW4wvXfpIXuyd9ZifY,4957
|
60
59
|
wolfhece/apps/isocurrent.py,sha256=AG29IGdH-MStdg25QbBrMSW_AHOQDEVGLRslOaxWnHM,3868
|
61
60
|
wolfhece/apps/splashscreen.py,sha256=9BNArfcoRcyWglzFDQdLv2Dlvqz8w5qYKdE5zA66-Kw,2117
|
62
61
|
wolfhece/apps/wolf.py,sha256=pyfVq7H-iz1IPRjm7OHsNMvkpGKZdNSIPpVyZEbxeZo,294
|
63
62
|
wolfhece/apps/wolf2D.py,sha256=nQ5SbGBJLODmIbqazYR6L0FsXp6K5oIo-hKIxtvqoaA,173
|
64
|
-
wolfhece/apps/
|
65
|
-
wolfhece/apps/wolfcompare2Darrays.py,sha256=xkhjSFB6ZCeN5Ou0ILsXZa3oBOvwaBADOaOCpKOQTiw,3897
|
63
|
+
wolfhece/apps/wolfcompare2Darrays.py,sha256=fbwTAfy2X-yuJlwYlDFuwE7Al53InvUZVJIz1mwfR7I,3904
|
66
64
|
wolfhece/apps/wolfhydro.py,sha256=XO4x_ieXv_VqOwRkF11greH68FTc8rx4IfFkRGBYiJE,402
|
67
|
-
wolfhece/bernoulli/ModelJockgrim.py,sha256=VBxU1Y9w7MdT3puTWPq-cGM_frp-bdwHKiHcqbeDZJs,9547
|
68
|
-
wolfhece/bernoulli/NetworkOpenGL.py,sha256=pdScrDkik2EKhfUTGjd9W6UU-TOXgDxmxzpw5Dhu-Q0,290414
|
69
|
-
wolfhece/bernoulli/ReadNeupotzData.py,sha256=da0dDIVcLb44j4lP4IveueTl3KBQW8XJd83h8n_hObk,9455
|
70
|
-
wolfhece/bernoulli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
71
|
-
wolfhece/bernoulli/opti_results_interactive_plot.py,sha256=gWUF6iJYNp_aEXcAfGBQn4CcZPsRbiQN0HbPZDj68v8,6357
|
72
65
|
wolfhece/blender/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
73
66
|
wolfhece/blender/array2polygons.py,sha256=r7wIAsP2M4qJQqdhIRaLFwyQ8P0b9DeSBorBXG0Lyx8,8559
|
74
67
|
wolfhece/blender/ply.py,sha256=jTRUqRGD_XyGdE865Iv214DE8-m_ZscqlfTJP99lUOE,555
|
75
68
|
wolfhece/blender/quads.py,sha256=gBoXN-BASPivcGhCIlWgsELCaEO-NH0rhywA7BXY_1Q,11704
|
69
|
+
wolfhece/clientserver/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
70
|
+
wolfhece/clientserver/clientserver.py,sha256=xXKc8gKjEYilIK8o_xeslbVu9Ouklmk4vkR8Ppy3HYM,2500
|
76
71
|
wolfhece/eva/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
77
72
|
wolfhece/eva/bootstrap.py,sha256=xHbIAZzFuaKLwiRpgvsLi5OZYqwaxYACqsAU-FnB6Pc,605
|
78
73
|
wolfhece/eva/hydrogramme_mono.py,sha256=uZFIgJJ-JogMFzt7D7OnyVaHvgxCQJPZz9W9FgnuthA,8138
|
@@ -84,16 +79,16 @@ wolfhece/fonts/arial.ttf,sha256=uwYWwXEZKaG6axcVPiDDM0MXLgf40xAQmMwR8BSShSY,3749
|
|
84
79
|
wolfhece/fonts/helvetica.ttf,sha256=X4Zd3zdUmuRGMLE6UB-BMIbirpdK3Ia5czfNnuSx5P8,317968
|
85
80
|
wolfhece/fonts/sanserif.ttf,sha256=Nvv5eMgTl5-bWgV37B7E1-vZpAZPNJwjtJSzMNDrl9A,42696
|
86
81
|
wolfhece/ftp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
87
|
-
wolfhece/ftp/downloader.py,sha256=
|
88
|
-
wolfhece/hydrology/Catchment.py,sha256=
|
82
|
+
wolfhece/ftp/downloader.py,sha256=NANzxSzdcp25dFMYin5QA9UnFexNe6-W2AqqTzUE4f4,5223
|
83
|
+
wolfhece/hydrology/Catchment.py,sha256=x_9Z4dCg08f1SyRi2pFlaYKgT9kAXQC-2PiG7VnRl_8,120545
|
89
84
|
wolfhece/hydrology/Comparison.py,sha256=fWmuR3YlpOEMTnjb6uIyXppCp_iWA0A5hRIPO-WXhYs,81534
|
90
85
|
wolfhece/hydrology/Dumping.py,sha256=Vt5WwGW-5rv9j7kg6z-JdI3olO2LY019cAEYyrfey_k,2011
|
91
86
|
wolfhece/hydrology/Optimisation.py,sha256=GeIrezh7YxVmP9zqHcZIrSmbp-azmSKFmpp_oEJZZ_A,91096
|
92
87
|
wolfhece/hydrology/Outlet.py,sha256=MDcrrRzpoCmReQxaPKjhkXnN01Bqmnm0Kmjf8fdkTFo,9992
|
93
88
|
wolfhece/hydrology/PostProcessHydrology.py,sha256=SiW5FIf8FeQL9ItWG8ODt612k5m59aogSLgpsXinr8I,6944
|
94
|
-
wolfhece/hydrology/PyWatershed.py,sha256=
|
89
|
+
wolfhece/hydrology/PyWatershed.py,sha256=K6yz8UquJi51v2nGqWmeo8qs82-QHoa2LYaxwoUBTxM,73914
|
95
90
|
wolfhece/hydrology/RetentionBasin.py,sha256=jw8xI5i5OmktJKGD9BLfQp_XV2s74j4s-SuehnvPkKE,64164
|
96
|
-
wolfhece/hydrology/SubBasin.py,sha256=
|
91
|
+
wolfhece/hydrology/SubBasin.py,sha256=OPdhwBnwU-kFtHRNvUAxiCzPSZlC3XpiEMlEa5UgRRI,142004
|
97
92
|
wolfhece/hydrology/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
98
93
|
wolfhece/hydrology/constant.py,sha256=W04wikEJHDQaY0bR8ddU1b_OAuwX1VjNTnXRROwZzug,1231
|
99
94
|
wolfhece/hydrology/cst_exchanges.py,sha256=Bzpebw47Q0o2-UUzKZ3fndFLOv-PfLUQM7jgQkYTJf4,14851
|
@@ -105,7 +100,7 @@ wolfhece/hydrology/slope_manager.py,sha256=uZzq7Ba3RMbZL5LPaxdCpkgTVNBAUJs1X_d2s
|
|
105
100
|
wolfhece/hydrology/wolfMap_treatment.py,sha256=5LO49yj1M-s9sGaK0hVgMtuT3t1yPJq9wd6LDh-GXaA,10288
|
106
101
|
wolfhece/hydrometry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
107
102
|
wolfhece/hydrometry/kiwis.py,sha256=dYu8rp0iZeSLqUfMSb4x4uks4o_wV4K1uNZTNqd2a58,33587
|
108
|
-
wolfhece/hydrometry/kiwis_gui.py,sha256=
|
103
|
+
wolfhece/hydrometry/kiwis_gui.py,sha256=odgN70PqTLU1ejDzxj92kEN736Yr9-Bpq4-Sn3AmoM0,22865
|
109
104
|
wolfhece/hydrometry/kiwispie.py,sha256=gz9AbiLV2akFwt2s7OipWt_K7TnWun-vXCsSiFYRXJ0,13245
|
110
105
|
wolfhece/icons/folder_open.png,sha256=ykBlU2FtGcpjAu1YO4_eGlDg2svgs_IAs-4d5O2e3AM,2329
|
111
106
|
wolfhece/icons/folder_plus.png,sha256=Z1Jcs87Z6pNcudxGDTNhC_hgolSSaXe6_fmQE_n-ero,1963
|
@@ -195,7 +190,7 @@ wolfhece/links/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
195
190
|
wolfhece/links/link.py,sha256=CoHcZK2wWKzO8QFqtdzw5-Z6_PhxvJ6JqlA3HsHHuf0,445
|
196
191
|
wolfhece/locales/base.po,sha256=meU93yWX-AlU13FlIYnuXNnYsxVB9k4O_QoBQ_h2W1I,1026
|
197
192
|
wolfhece/locales/base.pot,sha256=laQ4oYGvdH5IaFtgx6TVjnr28_JX9bdSBZFcGndjuGk,1116
|
198
|
-
wolfhece/mar/Interface_MAR_WOLF_objet.py,sha256=
|
193
|
+
wolfhece/mar/Interface_MAR_WOLF_objet.py,sha256=_PNOrZDr-7CR19x_XHqLB5Si2hk8e469sYCgv3sTJmk,53791
|
199
194
|
wolfhece/mar/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
200
195
|
wolfhece/mar/commontools.py,sha256=vCmoNI2sMOco6Y4KPpKb7WORq45qFU_lSxbKGV9oZ8A,53824
|
201
196
|
wolfhece/mar/interface_MAR_WOLF.py,sha256=MWeXaHLDT4Eo9jZOAvz013lmpgGYT1v9VUYGAgBgSRU,21454
|
@@ -215,12 +210,12 @@ wolfhece/models/shields_cst.pal,sha256=zUGFI6HiL0bsHeOzcWNih3F9cxXKXLLZYA5rtqRbz
|
|
215
210
|
wolfhece/models/waterdepths.pal,sha256=8rcQfuZOeLKzYv5sARPkhpvZYc1OToj3ZukcbuRUgIY,136
|
216
211
|
wolfhece/opengl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
217
212
|
wolfhece/opengl/gl_utils.py,sha256=-eH2WAWdLFr6mzEwN8XdfJfM8U2rgvRryCAqjH-zeys,66136
|
218
|
-
wolfhece/opengl/py3d.py,sha256=
|
213
|
+
wolfhece/opengl/py3d.py,sha256=Ws2VM8TNHR4Tx_Ud14c38FEco3LZWevH7UvtSUt6osw,66451
|
219
214
|
wolfhece/opengl/tile_packer.py,sha256=0B1-Q-Jm-lKIXrw2lFbrrVL9gbtbl50jeWl67ymYbsc,15841
|
220
215
|
wolfhece/pythonfortran/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
221
|
-
wolfhece/pythonfortran/example_makendarray.py,sha256=
|
222
|
-
wolfhece/pythonfortran/example_numpy_memory.py,sha256=
|
223
|
-
wolfhece/pythonfortran/tools.py,sha256=
|
216
|
+
wolfhece/pythonfortran/example_makendarray.py,sha256=FNPp6lsU9Mv0O8VLN3JHWk5Qn1zZxUSCPeDyUI1-x48,2718
|
217
|
+
wolfhece/pythonfortran/example_numpy_memory.py,sha256=o3hzJDw7YtE4v0FXI3-l2VzupCk5xF7-uqlb_Ay8FUQ,3660
|
218
|
+
wolfhece/pythonfortran/tools.py,sha256=oYh9MguRYEGNGKVbHqQW2V9okZJLs3n4Qs-vLWPmBe4,2462
|
224
219
|
wolfhece/radar/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
225
220
|
wolfhece/radar/wolfradar.py,sha256=ylyz8hNAGq92WXnMO8hVe6Nk-a7g--fL-xOcjfhFEtk,9714
|
226
221
|
wolfhece/rem/REMMaker.py,sha256=kffClHHpf8P4ruZpEb9EB__HBzg9rFAkiVCh-GFtIHU,30790
|
@@ -229,8 +224,8 @@ wolfhece/rem/__init__.py,sha256=S2-J5uEGK_VaMFjRUYFIdSScJjZyuXH4RmMmnG3OG7I,19
|
|
229
224
|
wolfhece/scenario/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
230
225
|
wolfhece/scenario/check_scenario.py,sha256=Q0_jA3PYapcbCT881YojTwKoRi_RjZpevHXhtP9VoqE,4619
|
231
226
|
wolfhece/scenario/config_manager.py,sha256=kYN2V82B8nwUUBmhPzoTATAPVncSg1s7pf4Inp_8WcU,55245
|
232
|
-
wolfhece/scenario/imposebc_void.py,sha256=
|
233
|
-
wolfhece/scenario/update_void.py,sha256=
|
227
|
+
wolfhece/scenario/imposebc_void.py,sha256=pl7c99HQQMQT7i15fDlOOFYCdOtR5c_XIBOveOTOaLc,5273
|
228
|
+
wolfhece/scenario/update_void.py,sha256=MmiDiwWHvuk0mpXOlMeB2ImY-d1Wi3Wfmg9hrDTAraE,7176
|
234
229
|
wolfhece/shaders/fragment_shader_texture.glsl,sha256=w6h8d5mJqFaGbao0LGmjRcFFdcEQ3ICIl9JpuT71K5k,177
|
235
230
|
wolfhece/shaders/geom_grid.glsl,sha256=7eAkutCrwoeJpIdF69Ar7K18YyClvVG8ArJJARcmC-Q,742
|
236
231
|
wolfhece/shaders/quad_frag_shader.glsl,sha256=GYGg9q4vFXiMuLK-pxSLz7crAE3dvlzJ7-e7PMfwSq0,1227
|
@@ -248,8 +243,8 @@ wolfhece/sounds/sonsw1.wav,sha256=HhuGeZ3iIyJdDALmM-jvGZDkKw3IZ3JXCuQZkN3Zjtc,21
|
|
248
243
|
wolfhece/sounds/sonsw2.wav,sha256=pFLVt6By0_EPQNt_3KfEZ9a1uSuYTgQSX1I_Zurv9Rc,110636
|
249
244
|
wolfhece/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
250
245
|
wolfhece/ui/wolf_multiselection_collapsiblepane.py,sha256=yGbU_JsF56jsmms0gh7mxa7tbNQ_SxqhpAZxhm-mTy4,14860
|
251
|
-
wolfhece-2.0.
|
252
|
-
wolfhece-2.0.
|
253
|
-
wolfhece-2.0.
|
254
|
-
wolfhece-2.0.
|
255
|
-
wolfhece-2.0.
|
246
|
+
wolfhece-2.0.18.dist-info/METADATA,sha256=_Qnbh7lus3Ln44kYSd_UjvnovEnBd38bWRq4nIHSMPw,2239
|
247
|
+
wolfhece-2.0.18.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
248
|
+
wolfhece-2.0.18.dist-info/entry_points.txt,sha256=IHhq-i2W9QpyXFHKe2Ld8j1R4hW5DmYqrZsuSsXkdEE,245
|
249
|
+
wolfhece-2.0.18.dist-info/top_level.txt,sha256=EfqZXMVCn7eILUzx9xsEu2oBbSo9liWPFWjIHik0iCI,9
|
250
|
+
wolfhece-2.0.18.dist-info/RECORD,,
|
wolfhece/apps/wolfBernoulli.py
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
|
2
|
-
import wx
|
3
|
-
try:
|
4
|
-
from ..PyTranslate import _
|
5
|
-
from ..bernoulli.NetworkOpenGL import Bernoulli_Window
|
6
|
-
except:
|
7
|
-
from wolfhece.PyTranslate import _
|
8
|
-
from wolfhece.bernoulli.NetworkOpenGL import Bernoulli_Frame
|
9
|
-
import wx
|
10
|
-
|
11
|
-
def main():
|
12
|
-
app = wx.App()
|
13
|
-
ex = Bernoulli_Frame(None)
|
14
|
-
ex.Show()
|
15
|
-
app.MainLoop()
|
16
|
-
|
17
|
-
if __name__=='__main__':
|
18
|
-
main()
|