-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathParameters.i
More file actions
36 lines (29 loc) · 1.93 KB
/
Parameters.i
File metadata and controls
36 lines (29 loc) · 1.93 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
vacuum_permeability = ${fparse 4e-7*pi} # H/m
vacuum_reluctivity = ${fparse 1/vacuum_permeability} # (H/m)^-1
vacuum_econductivity = 1e-6 # S/m
vacuum_tconductivity = 0 # W/(m*K)
vacuum_density = 0 # kg/m^3
vacuum_capacity = 0 # J/(kg*K)
copper_permeability = ${fparse vacuum_permeability} # H/m
copper_reluctivity = ${fparse 1/copper_permeability} # (H/m)^-1
copper_econductivity = 5.96e7 # S/m
copper_tconductivity = 400.59 # W/(m*K)
copper_density = 8.94e3 # kg/m^3
copper_capacity = 388.29 # J/(kg*K)
steel_permeability = ${fparse vacuum_permeability} # H/m
steel_reluctivity = ${fparse 1/steel_permeability} # (H/m)^-1
steel_econductivity = 1.29e6 # S/m
steel_tconductivity = 14.28 # W/(m*K)
steel_density = 8.00e3 # kg/m^3
steel_capacity = 472.40 # J/(kg*K)
room_temperature = 293.15 # K
voltage_amplitude = 0.2998340 # V
voltage_frequency = 1e5 # Hz
voltage_wfrequency = ${fparse 2*pi*voltage_frequency} # rad/s
voltage_period = ${fparse 1/voltage_frequency} # s
delta_t_af = ${fparse voltage_period/50} # s
skip_t_af = ${fparse voltage_period} # s
end_t_af = ${fparse voltage_period*2} # s
delta_t_th = 5 # s
end_t_th = 60 # s
visualization = false