-
Notifications
You must be signed in to change notification settings - Fork 4
MORFEUS FV Input File
Ian Porter edited this page Feb 3, 2020
·
2 revisions
The MORFEUS input file uses the .json
input file structure. The input consists of the following sections:
There are two types of high-level boundary conditions:
- MATH - These inputs require user-specified math solution BCs
- WALL - These inputs require physics-defined types of BCs
- Dirichlet
- Neumann
- Robin
- Dirichlet Map
- Neumann Map
- Robin Map
- Neumann Flux
- Robin Convection
- Fixed
- Adiabatic
- Flux
- Convection
- Convection Map
- Fixed
- Adiabatic
- No slip
- Free slip
- Sliding
- Moving
- Free sliding
- Stationary
- Moving
- Free
- Prescribed
- Free
- Prescribed
{
"BCS": [
{
"surface-ids": [1,3,4],
"type": "math",
"description": "blah",
"id": 3,
"abc": [ 0.0, 0.0, 0.0 ]
},
{
"surface-ids": [2,5],
"type": "wall",
"description": "blah",
"temperature": {
"id" : 1,
"value": 500.0
},
"stress": {
"id" : 1
},
"velocity": {
"id" : 1
}
}
]
}