-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuml
More file actions
70 lines (58 loc) · 1.8 KB
/
uml
File metadata and controls
70 lines (58 loc) · 1.8 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
class ReactorApp {
+registerAll()
+registerObjects()
+associateSyntax()
}
class ReactorCouplingControl {
-_max_iterations: unsigned int
-_convergence_tol: Real
+execute()
+
-checkConvergence(): bool
}
class NeutronicsMultiApp {
-_mesh_dims: vector<int>
-_power_var_name: string
-_temperature_var_name: string
+solveStep()
-executeB1Solver()
}
class ThermalMultiApp {
-_mesh_dims: vector<int>
-_power_var_name: string
-_temperature_var_name: string
+solveStep()
}
class ReactorTransfer {
-_transfer_count: unsigned int
-from_neutronics
-to_neutronics
-from_thermal
-to_thermal
+execute()
}
class SCAPN_Interfaces1 {
<<Fortran>>
+SCAP_N_Calculation()
}
class SCAPN_Interfaces2 {
<<Fortran>>
+SCAP_N_Preprocessor()
+SCAP_N_Postprocessor()
}
class Thermal_Interfaces {
<<Fortran>>
+Thermal_calculation()
}
ReactorApp <.. ReactorCouplingControl : registers
ReactorApp <.. NeutronicsMultiApp : registers
ReactorApp <.. ThermalMultiApp : registers
ReactorApp <.. ReactorTransfer : registers
ReactorCouplingControl --> NeutronicsMultiApp : controls execution
ReactorCouplingControl --> ThermalMultiApp : controls execution
ReactorCouplingControl --> ReactorTransfer : controls execution
ReactorCouplingControl --> SCAPN_Interfaces2 : calls
NeutronicsMultiApp --> SCAPN_Interfaces1 : calls
ThermalMultiApp --> Thermal_Interfaces : calls
ReactorTransfer --> NeutronicsMultiApp : transfers data
ReactorTransfer --> ThermalMultiApp : transfers data