-
Notifications
You must be signed in to change notification settings - Fork 0
/
thermal-square_convection.json
105 lines (101 loc) · 3.04 KB
/
thermal-square_convection.json
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
{
"mesh_filename": "$m$",
"element_order": "$o$",
"element_order_output": "$o$",
"functions": [
{
"function_name": "T_mms",
"function_type": "Expression",
"function": {
"arguments": [ "x", "y" ],
"expression": "$T$"
}
},
{
"function_name": "dTdx",
"function_type": "Expression",
"function": {
"arguments": [ "x", "y" ],
"expression": "$dTdx$"
}
},
{
"function_name": "dTdy",
"function_type": "Expression",
"function": {
"arguments": [ "x", "y" ],
"expression": "$dTdy$"
}
},
{
"function_name": "q_mms",
"function_type": "Expression",
"function": {
"arguments": [ "x", "y" ],
"expression": "$q$"
}
}
],
"physics": [
{
"physics_type": "Thermal",
"boundary_conditions": [
{
"group_names": [ "left", "top" ],
"boundary_condition_type": "Dirichlet",
"value_type": "ExpressionValues",
"value": { "values": [ "T_mms(x,y)" ] }
},{
"group_names": [ "bottom" ],
"boundary_condition_type": "HeatFlux",
"value_type": "ExpressionValues",
"value": { "values": [ "-dTdy(x,y)" ] }
},{
"group_names": [ "right" ],
"boundary_condition_type": "Convection",
"boundary_condition": {
"heat_transfer_coefficient": {
"value_type": "ExpressionValues",
"value": { "values": [ "-dTdx(x,y)/(T-3)" ] }
},
"T_infinity": {
"value_type": "ConstantValues",
"value": { "values": [ 3 ] }
}
},
},{
"group_names":[ "bulk" ],
"boundary_condition_type": "ThermalPowerDensity",
"value_type": "ExpressionValues",
"value": { "values": [ "q_mms(x,y)" ] }
},
]
}
],
"materials": [
{
"name": "bulk",
"thermal_properties": {
"thermal_conductivity_type": "IsotropicFourier",
"thermal_conductivity": {
"thermal_conductivity": "1"
},
}
}
],
"material_mapping": [
{
"volume_name": "bulk",
"material_name": "bulk"
}
],
"outputs": {
"field_data": [
{
"field_name": "Temperature"
}
]
},
"analysis_type": "StaticAnalysis",
"analysis": {}
}