14
14
# Common types for ctypes function signatures
15
15
CadetDriver = ctypes .c_void_p
16
16
array_double = ctypes .POINTER (ctypes .POINTER (ctypes .c_double ))
17
+ point_bool = ctypes .POINTER (ctypes .c_bool )
17
18
point_int = ctypes .POINTER (ctypes .c_int )
19
+ point_double = ctypes .POINTER (ctypes .c_double )
18
20
19
21
# Values of cdtResult
20
22
c_cadet_result = ctypes .c_int
@@ -41,43 +43,47 @@ class CADETAPIV010000_DATA:
41
43
# API function signatures
42
44
# Note, order is important, it has to match the cdtAPIv010000 struct of the C-API
43
45
signatures = {}
46
+
47
+ signatures ['getFileFormat' ] = ('return' , 'fileFormat' )
48
+
44
49
signatures ['createDriver' ] = ('drv' ,)
45
50
signatures ['deleteDriver' ] = (None , 'drv' )
46
51
signatures ['runSimulation' ] = ('return' , 'drv' , 'parameterProvider' )
47
52
53
+ signatures ['getNumUnitOp' ] = ('return' , 'drv' , 'nUnits' )
48
54
signatures ['getNumParTypes' ] = ('return' , 'drv' , 'unitOpId' , 'nParTypes' )
49
55
signatures ['getNumSensitivities' ] = ('return' , 'drv' , 'nSens' )
50
56
51
57
signatures ['getSolutionInlet' ] = ('return' , 'drv' , 'unitOpId' , 'time' , 'data' , 'nTime' , 'nPort' , 'nComp' )
52
58
signatures ['getSolutionOutlet' ] = ('return' , 'drv' , 'unitOpId' , 'time' , 'data' , 'nTime' , 'nPort' , 'nComp' )
53
- signatures ['getSolutionBulk' ] = ('return' , 'drv' , 'unitOpId' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nComp' )
54
- signatures ['getSolutionParticle' ] = ('return' , 'drv' , 'unitOpId' , 'parType' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParShells' , 'nComp' )
55
- signatures ['getSolutionSolid' ] = ('return' , 'drv' , 'unitOpId' , 'parType' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParShells' , 'nBound' )
56
- signatures ['getSolutionFlux' ] = ('return' , 'drv' , 'unitOpId' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParTypes' , 'nComp' )
59
+ signatures ['getSolutionBulk' ] = ('return' , 'drv' , 'unitOpId' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nComp' , 'keepAxialSingletonDimension' )
60
+ signatures ['getSolutionParticle' ] = ('return' , 'drv' , 'unitOpId' , 'parType' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParShells' , 'nComp' , 'keepAxialSingletonDimension' , 'keepParticleSingletonDimension' )
61
+ signatures ['getSolutionSolid' ] = ('return' , 'drv' , 'unitOpId' , 'parType' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParShells' , 'nBound' , 'keepAxialSingletonDimension' , 'keepParticleSingletonDimension' )
62
+ signatures ['getSolutionFlux' ] = ('return' , 'drv' , 'unitOpId' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParTypes' , 'nComp' , 'keepAxialSingletonDimension' )
57
63
signatures ['getSolutionVolume' ] = ('return' , 'drv' , 'unitOpId' , 'time' , 'data' , 'nTime' )
58
64
59
65
signatures ['getSolutionDerivativeInlet' ] = ('return' , 'drv' , 'unitOpId' , 'time' , 'data' , 'nTime' , 'nPort' , 'nComp' )
60
66
signatures ['getSolutionDerivativeOutlet' ] = ('return' , 'drv' , 'unitOpId' , 'time' , 'data' , 'nTime' , 'nPort' , 'nComp' )
61
- signatures ['getSolutionDerivativeBulk' ] = ('return' , 'drv' , 'unitOpId' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nComp' )
62
- signatures ['getSolutionDerivativeParticle' ] = ('return' , 'drv' , 'unitOpId' , 'parType' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParShells' , 'nComp' )
63
- signatures ['getSolutionDerivativeSolid' ] = ('return' , 'drv' , 'unitOpId' , 'parType' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParShells' , 'nBound' )
64
- signatures ['getSolutionDerivativeFlux' ] = ('return' , 'drv' , 'unitOpId' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParTypes' , 'nComp' )
67
+ signatures ['getSolutionDerivativeBulk' ] = ('return' , 'drv' , 'unitOpId' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nComp' , 'keepAxialSingletonDimension' )
68
+ signatures ['getSolutionDerivativeParticle' ] = ('return' , 'drv' , 'unitOpId' , 'parType' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParShells' , 'nComp' , 'keepAxialSingletonDimension' , 'keepParticleSingletonDimension' )
69
+ signatures ['getSolutionDerivativeSolid' ] = ('return' , 'drv' , 'unitOpId' , 'parType' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParShells' , 'nBound' , 'keepAxialSingletonDimension' , 'keepParticleSingletonDimension' )
70
+ signatures ['getSolutionDerivativeFlux' ] = ('return' , 'drv' , 'unitOpId' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParTypes' , 'nComp' , 'keepAxialSingletonDimension' )
65
71
signatures ['getSolutionDerivativeVolume' ] = ('return' , 'drv' , 'unitOpId' , 'time' , 'data' , 'nTime' )
66
72
67
73
signatures ['getSensitivityInlet' ] = ('return' , 'drv' , 'unitOpId' , 'sensIdx' , 'time' , 'data' , 'nTime' , 'nPort' , 'nComp' )
68
74
signatures ['getSensitivityOutlet' ] = ('return' , 'drv' , 'unitOpId' , 'sensIdx' , 'time' , 'data' , 'nTime' , 'nPort' , 'nComp' )
69
- signatures ['getSensitivityBulk' ] = ('return' , 'drv' , 'unitOpId' , 'sensIdx' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nComp' )
70
- signatures ['getSensitivityParticle' ] = ('return' , 'drv' , 'unitOpId' , 'sensIdx' , 'parType' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParShells' , 'nComp' )
71
- signatures ['getSensitivitySolid' ] = ('return' , 'drv' , 'unitOpId' , 'sensIdx' , 'parType' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParShells' , 'nBound' )
72
- signatures ['getSensitivityFlux' ] = ('return' , 'drv' , 'unitOpId' , 'sensIdx' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParTypes' , 'nComp' )
75
+ signatures ['getSensitivityBulk' ] = ('return' , 'drv' , 'unitOpId' , 'sensIdx' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nComp' , 'keepAxialSingletonDimension' )
76
+ signatures ['getSensitivityParticle' ] = ('return' , 'drv' , 'unitOpId' , 'sensIdx' , 'parType' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParShells' , 'nComp' , 'keepAxialSingletonDimension' , 'keepParticleSingletonDimension' )
77
+ signatures ['getSensitivitySolid' ] = ('return' , 'drv' , 'unitOpId' , 'sensIdx' , 'parType' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParShells' , 'nBound' , 'keepAxialSingletonDimension' , 'keepParticleSingletonDimension' )
78
+ signatures ['getSensitivityFlux' ] = ('return' , 'drv' , 'unitOpId' , 'sensIdx' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParTypes' , 'nComp' , 'keepAxialSingletonDimension' )
73
79
signatures ['getSensitivityVolume' ] = ('return' , 'drv' , 'unitOpId' , 'sensIdx' , 'time' , 'data' , 'nTime' )
74
80
75
81
signatures ['getSensitivityDerivativeInlet' ] = ('return' , 'drv' , 'unitOpId' , 'sensIdx' , 'time' , 'data' , 'nTime' , 'nPort' , 'nComp' )
76
82
signatures ['getSensitivityDerivativeOutlet' ] = ('return' , 'drv' , 'unitOpId' , 'sensIdx' , 'time' , 'data' , 'nTime' , 'nPort' , 'nComp' )
77
- signatures ['getSensitivityDerivativeBulk' ] = ('return' , 'drv' , 'unitOpId' , 'sensIdx' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nComp' )
78
- signatures ['getSensitivityDerivativeParticle' ] = ('return' , 'drv' , 'unitOpId' , 'sensIdx' , 'parType' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParShells' , 'nComp' )
79
- signatures ['getSensitivityDerivativeSolid' ] = ('return' , 'drv' , 'unitOpId' , 'sensIdx' , 'parType' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParShells' , 'nBound' )
80
- signatures ['getSensitivityDerivativeFlux' ] = ('return' , 'drv' , 'unitOpId' , 'sensIdx' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParTypes' , 'nComp' )
83
+ signatures ['getSensitivityDerivativeBulk' ] = ('return' , 'drv' , 'unitOpId' , 'sensIdx' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nComp' , 'keepAxialSingletonDimension' )
84
+ signatures ['getSensitivityDerivativeParticle' ] = ('return' , 'drv' , 'unitOpId' , 'sensIdx' , 'parType' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParShells' , 'nComp' , 'keepAxialSingletonDimension' , 'keepParticleSingletonDimension' )
85
+ signatures ['getSensitivityDerivativeSolid' ] = ('return' , 'drv' , 'unitOpId' , 'sensIdx' , 'parType' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParShells' , 'nBound' , 'keepAxialSingletonDimension' , 'keepParticleSingletonDimension' )
86
+ signatures ['getSensitivityDerivativeFlux' ] = ('return' , 'drv' , 'unitOpId' , 'sensIdx' , 'time' , 'data' , 'nTime' , 'nAxialCells' , 'nRadialCells' , 'nParTypes' , 'nComp' , 'keepAxialSingletonDimension' )
81
87
signatures ['getSensitivityDerivativeVolume' ] = ('return' , 'drv' , 'unitOpId' , 'sensIdx' , 'time' , 'data' , 'nTime' )
82
88
83
89
signatures ['getLastState' ] = ('return' , 'drv' , 'state' , 'nStates' )
@@ -92,19 +98,18 @@ class CADETAPIV010000_DATA:
92
98
signatures ['getPrimaryCoordinates' ] = ('return' , 'drv' , 'unitOpId' , 'coords' , 'nCoords' )
93
99
signatures ['getSecondaryCoordinates' ] = ('return' , 'drv' , 'unitOpId' , 'coords' , 'nCoords' )
94
100
signatures ['getParticleCoordinates' ] = ('return' , 'drv' , 'unitOpId' , 'parType' , 'coords' , 'nCoords' )
95
-
96
101
signatures ['getSolutionTimes' ] = ('return' , 'drv' , 'time' , 'nTime' )
97
102
103
+ signatures ['getTimeSim' ] = ('return' , 'drv' , 'timeSim' )
104
+
98
105
# Mappings for common ctypes parameters
99
106
lookup_prototype = {
107
+ None : None ,
100
108
'return' : c_cadet_result ,
109
+ 'fileFormat' : point_int ,
101
110
'drv' : CadetDriver ,
102
- 'unitOpId' : ctypes .c_int ,
103
- 'sensIdx' : ctypes .c_int ,
104
- 'parType' : ctypes .c_int ,
105
- 'time' : array_double ,
106
- 'data' : array_double ,
107
- 'coords' : array_double ,
111
+ 'parameterProvider' : ctypes .POINTER (cadet_dll_parameterprovider .PARAMETERPROVIDER ),
112
+ 'nUnits' : point_int ,
108
113
'nTime' : point_int ,
109
114
'nCoords' : point_int ,
110
115
'nPort' : point_int ,
@@ -115,16 +120,24 @@ class CADETAPIV010000_DATA:
115
120
'nParShells' : point_int ,
116
121
'nComp' : point_int ,
117
122
'nBound' : point_int ,
118
- 'state' : array_double ,
119
123
'nStates' : point_int ,
120
- None : None ,
121
- 'parameterProvider' : ctypes .POINTER (cadet_dll_parameterprovider .PARAMETERPROVIDER ),
124
+ 'unitOpId' : ctypes .c_int ,
125
+ 'sensIdx' : ctypes .c_int ,
126
+ 'parType' : ctypes .c_int ,
127
+ 'time' : array_double ,
128
+ 'data' : array_double ,
129
+ 'state' : array_double ,
130
+ 'coords' : array_double ,
131
+ 'keepAxialSingletonDimension' : point_bool ,
132
+ 'keepParticleSingletonDimension' : point_bool ,
133
+ 'timeSim' : point_double ,
122
134
}
123
135
124
136
lookup_output_argument_type = {
125
- 'time' : ctypes .POINTER (ctypes .c_double ),
137
+ 'fileFormat' : ctypes .c_int ,
138
+ 'nUnits' : ctypes .c_int ,
126
139
'nTime' : ctypes .c_int ,
127
- 'data ' : ctypes .POINTER ( ctypes . c_double ) ,
140
+ 'nCoords ' : ctypes .c_int ,
128
141
'nPort' : ctypes .c_int ,
129
142
'nAxialCells' : ctypes .c_int ,
130
143
'nRadialCells' : ctypes .c_int ,
@@ -133,10 +146,14 @@ class CADETAPIV010000_DATA:
133
146
'nParShells' : ctypes .c_int ,
134
147
'nComp' : ctypes .c_int ,
135
148
'nBound' : ctypes .c_int ,
136
- 'state' : ctypes .POINTER (ctypes .c_double ),
137
149
'nStates' : ctypes .c_int ,
150
+ 'time' : ctypes .POINTER (ctypes .c_double ),
151
+ 'data' : ctypes .POINTER (ctypes .c_double ),
152
+ 'state' : ctypes .POINTER (ctypes .c_double ),
138
153
'coords' : ctypes .POINTER (ctypes .c_double ),
139
- 'nCoords' : ctypes .c_int ,
154
+ 'keepAxialSingletonDimension' : ctypes .c_bool ,
155
+ 'keepParticleSingletonDimension' : ctypes .c_bool ,
156
+ 'timeSim' : ctypes .c_double ,
140
157
}
141
158
142
159
@@ -299,6 +316,7 @@ def _process_data(
299
316
"""
300
317
shape = []
301
318
dims = []
319
+ drop_indices = []
302
320
303
321
# Ordering of multi-dimensional arrays, all possible dimensions:
304
322
# bulk: 'nTime', ('nAxialCells',) ('nRadialCells' / 'nPorts',) 'nComp'
@@ -324,10 +342,19 @@ def _process_data(
324
342
return
325
343
326
344
if 'data' in call_outputs :
345
+ if 'nAxialCells' in dims :
346
+ nAxialCells = call_outputs ['nAxialCells' ].value
347
+ keep_axial_singleton_dim = call_outputs ['keepAxialSingletonDimension' ].value
348
+ if nAxialCells == 1 and not keep_axial_singleton_dim :
349
+ drop_indices .append (dims .index ('nAxialCells' ))
350
+
327
351
if 'nParShells' in dims :
328
352
nParShells = call_outputs ['nParShells' ].value
329
- if nParShells == 1 :
330
- shape .pop (dims .index ('nParShells' ))
353
+ keep_particle_singleton_dim = call_outputs ['keepParticleSingletonDimension' ].value
354
+ if nParShells == 1 and not keep_particle_singleton_dim :
355
+ drop_indices .append (dims .index ('nParShells' ))
356
+
357
+ shape = numpy .delete (shape , drop_indices )
331
358
332
359
data = numpy .ctypeslib .as_array (call_outputs ['data' ], shape = shape )
333
360
if own_data :
@@ -400,6 +427,38 @@ def _load_and_process_array(
400
427
401
428
return self ._process_array (call_outputs , data_key , len_key , own_data )
402
429
430
+ def file_format (
431
+ self ,
432
+ own_data : bool = True ,
433
+ ) -> float :
434
+ """
435
+ Load the file format used for the simulation config.
436
+
437
+ Parameters
438
+ ----------
439
+ own_data : bool, optional
440
+ Whether to copy the data (default is True).
441
+
442
+ Returns
443
+ -------
444
+ int
445
+ The file format.
446
+ """
447
+ call_outputs = self ._load_data ('getFileFormat' )
448
+ return int (call_outputs ['fileFormat' ].value )
449
+
450
+ def nunits (self ) -> int :
451
+ """
452
+ Get the number of unit operations in the system.
453
+
454
+ Returns
455
+ -------
456
+ int
457
+ The number of unit operations in the system.
458
+ """
459
+ call_outputs = self ._load_data ('getNumUnitOp' )
460
+ return int (call_outputs ['nUnits' ].value )
461
+
403
462
def npartypes (self , unitOpId : int ) -> int :
404
463
"""
405
464
Get the number of particle types for a given unit operation.
@@ -1528,6 +1587,26 @@ def solution_times(
1528
1587
'time' , 'nTime' , 'getSolutionTimes' , own_data = own_data
1529
1588
)
1530
1589
1590
+ def time_sim (
1591
+ self ,
1592
+ own_data : bool = True ,
1593
+ ) -> float :
1594
+ """
1595
+ Load the simulation run time.
1596
+
1597
+ Parameters
1598
+ ----------
1599
+ own_data : bool, optional
1600
+ Whether to copy the data (default is True).
1601
+
1602
+ Returns
1603
+ -------
1604
+ float
1605
+ The simulation run time.
1606
+ """
1607
+ call_outputs = self ._load_data ('getTimeSim' )
1608
+ return float (call_outputs ['timeSim' ].value )
1609
+
1531
1610
1532
1611
class CadetDLLRunner (CadetRunnerBase ):
1533
1612
"""
@@ -2016,5 +2095,5 @@ def load_meta(self, sim: "Cadet") -> None:
2016
2095
sim .root .meta .cadet_branch = self .cadet_branch
2017
2096
sim .root .meta .cadet_commit = self .cadet_commit_hash
2018
2097
sim .root .meta .cadet_version = self .cadet_version
2019
- sim .root .meta .file_format = None
2020
- sim .root .meta .time_sim = None
2098
+ sim .root .meta .file_format = self . res . file_format ()
2099
+ sim .root .meta .time_sim = self . res . time_sim ()
0 commit comments