forked from code-saturne/code_saturne
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUsersControlModel.py
More file actions
235 lines (191 loc) · 6.88 KB
/
Copy pathUsersControlModel.py
File metadata and controls
235 lines (191 loc) · 6.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
# -*- coding: utf-8 -*-
#-------------------------------------------------------------------------------
# This file is part of code_saturne, a general-purpose CFD tool.
#
# Copyright (C) 1998-2022 EDF S.A.
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
# Street, Fifth Floor, Boston, MA 02110-1301, USA.
#-------------------------------------------------------------------------------
import sys, unittest
from code_saturne.model.XMLvariables import Model
from code_saturne.model.XMLengine import *
from code_saturne.model.XMLmodel import *
from code_saturne.model.Common import LABEL_LENGTH_MAX
class UsersControlModel(Variables, Model):
"""
This class manages the users objects in the XML file
"""
def __init__(self, case):
"""
Constuctor.
"""
# XML file parameters (TODO: rename matching tree nodes)
self.case = case
XMLUserScalar = self.case.xmlInitNode('additional_scalars')
self.XMLUser = XMLUserScalar.xmlInitNode('users')
self.f_type = "property"
def defaultValues(self):
default = {}
default['support'] = "cells"
default['dim'] = "1"
return default
def getUsersList(self, location=None):
"""
Return the user array list
"""
lst = []
for node in self.XMLUser.xmlGetNodeList(self.f_type):
if location:
if node['support'] == location:
lst.append(node)
else:
lst.append(node)
return lst
@Variables.undoGlobal
def addUser(self, name):
"""
add a new user field
"""
if name not in self.getUserNamesList():
self.XMLUser.xmlInitNode(self.f_type, name=name, type="user", label=name)
n = self.XMLUser.xmlGetNode(self.f_type, name=name)
n['support'] = self.defaultValues()['support']
n['dimension'] = self.defaultValues()['dim']
return name
@Variables.noUndo
def deleteUser(self, name):
"""
delete a user field
"""
# delete user
for node in self.XMLUser.xmlGetNodeList(self.f_type):
try :
if node['name'] == name:
node.xmlRemoveNode()
except :
pass
# suppress in profiles and averages
node_profile = None
node_moments = None
node_ac = self.case.xmlGetNode('analysis_control')
if node_ac:
node_profile = node_ac.xmlGetNode('profiles')
if node_profile:
for node in reversed(node_profile.xmlGetNodeList('profile')):
suppress = False
for child in node.xmlGetNodeList('var_prop'):
if (child['name'] == name):
child.xmlRemoveNode()
# suppress average
if node_ac:
node_m = node_ac.xmlGetNode('time_averages')
if node_m:
for node in reversed(node_m.xmlGetNodeList('time_average')):
suppress = False
for child in node.xmlGetNodeList('var_prop'):
if (child['name'] == name):
suppress = True
break
if suppress:
node.xmlRemoveNode()
@Variables.noUndo
def getUserNamesList(self, location=None):
"""
Get label list
"""
lst = []
for node in self.XMLUser.xmlGetNodeList(self.f_type):
if location:
if node['support'] == location:
lst.append(node['name'])
else:
lst.append(node['name'])
return lst
@Variables.undoLocal
def setUsersName(self, old_name, new_name):
"""
Put label
"""
if new_name not in self.getUserNamesList():
node = self.XMLUser.xmlGetNode(self.f_type, name=old_name)
if node:
node['name'] = new_name
node['label'] = new_name
@Variables.noUndo
def getUsersLocation(self, name):
"""
Get location
"""
node = self.XMLUser.xmlGetNode(self.f_type, name=name)
if node:
location = node['support']
if not location:
location = self.defaultValues()['support']
return location
@Variables.undoLocal
def setUsersLocation(self, name, support):
"""
Set location
"""
self.isInList(support, ('cells', 'internal', 'boundary', 'vertices'))
node = self.XMLUser.xmlGetNode(self.f_type, name=name)
if node :
node['support'] = support
@Variables.noUndo
def getUsersDim(self, name):
"""
Get array dimension
"""
dim = 1
node = self.XMLUser.xmlGetNode(self.f_type, name = name)
if node:
dim = node['dimension']
return dim
@Variables.undoLocal
def setUsersDim(self, name, dim):
"""
Set array dimension
"""
self.isInList(dim, ("1", "2", "3", "6", "9"))
node = self.XMLUser.xmlGetNode(self.f_type, name=name)
if node:
node['dimension'] = dim
#-------------------------------------------------------------------------------
# DefineUsersScalars test case
#-------------------------------------------------------------------------------
class AdditionalUserTestCase(ModelTest):
"""
"""
def checkAdditionalUserInstantiation(self):
"""Check whether the AdditionalUserModel class could be instantiated"""
model = None
model = AdditionalUserModel(self.case)
assert model != None, 'Could not instantiate AdditionalUserModel'
def checkGetUserList(self):
"""Check whether the AdditionalUserModel class could get the user list"""
mdl = AdditionalUserModel(self.case)
mdl.addUser(1)
assert mdl.getUsersList() == ['User_1'],\
'Could not get UserList'
def suite():
testSuite = unittest.makeSuite(AdditionalUserTestCase, "check")
return testSuite
def runTest():
print("AdditionalUserTestCase")
runner = unittest.TextTestRunner()
runner.run(suite())
#-------------------------------------------------------------------------------
# End
#-------------------------------------------------------------------------------