-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathfvSchemes.py
33 lines (29 loc) · 1.27 KB
/
fvSchemes.py
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
#!/usr/bin/python
import os
import file_operations
def second_order_spatial(fvSchemes_path="system/fvSchemes"):
"""
Assumed format: each setting is on its own line.
"""
file_operations.change_line(fvSchemes_path, ['div', 'phi', 'U'], ['//'], \
"\tdiv(phi,U)\t\tGauss linearUpwind grad(U);\n")
file_operations.change_line(fvSchemes_path, ['div', 'phi', 'k'], ['//'], \
"\tdiv(phi,k)\t\tGauss limitedLinear 1;\n")
file_operations.change_line(fvSchemes_path, ['div', 'phi', 'omega'], \
['//'], "\tdiv(phi,omega)\tGauss limitedLinear 1;\n")
file_operations.change_line(fvSchemes_path, ['div', 'phi', 'nut'], \
['//'], "\tdiv(phi,nut)\tGauss limitedLinear 1;\n")
return
def first_order_spatial(fvSchemes_path="system/fvSchemes"):
"""
Assumed format: each setting is on its own line.
"""
file_operations.change_line(fvSchemes_path, ['div', 'phi', 'U'], ['//'], \
"\tdiv(phi,U)\t\tGauss upwind;\n")
file_operations.change_line(fvSchemes_path, ['div', 'phi', 'k'], ['//'], \
"\tdiv(phi,k)\t\tGauss upwind;\n")
file_operations.change_line(fvSchemes_path, ['div', 'phi', 'omega'], \
['//'], "\tdiv(phi,omega)\tGauss upwind;\n")
file_operations.change_line(fvSchemes_path, ['div', 'phi', 'nut'], \
['//'], "\tdiv(phi,nut)\tGauss upwind;\n")
return