Skip to content
Snippets Groups Projects
Commit 6a93c88a authored by aschubig's avatar aschubig
Browse files

added config template

parent b3c99290
No related branches found
No related tags found
No related merge requests found
site:
name: # name of site
# Terrain and roughness data have to be in comma delimited text (csv) and km based CRS
terrain_data: # comma delimited terrain data (x,y,z)
roughness_data: # comma delimited roughness data (x,y,z0) (x,y,clc) check in main.py for conversion clc -> z0
center:
x: # x-coordinate
y: # y-coordinate
domain_radius: 5000 # radius to cut terrain data
reference_site:
file: # Reference measurement
sample_rate: # Measurement sampling rate, e.g. 10 min
column_v: # Column name with wind speed
column_dir: # Column name with wind direction
poi: # POI for "calibration"
validation_site:
file: # Validation measurement
column_v: # Column name with wind speed
column_dir: # Column name with wind direction
poi: # POI for AEP calculation
powercurve: # Power curve for AEP calculation
poi:
### example:
# poi_1: # items should be named poi_1, poi_2 etc. ...
# x: 575363 # x-coordinate
# y: 228495 # y-coordinate
# z: 1166.06 # z-coordinate
# h: 90.0 # height of measurement point
# name: # name of poi (can be empty)
###
poi_1:
x:
y:
z:
h:
name:
setup:
wind_directions: # e.g. 30
fluid: # not yet implemented
density:
viscosity:
mesh:
nx: 512 # number of grid point in x and y direction
nz: 64 # number of grid point in z direction
domain_height: 1500 # domain height measured from highest terrain z-coordinate
boundary_condition:
# inlet profile
u_ref: 10 # reference wind speed at z_ref
z_ref: 100 # reference height
z_0: 0.03 # roughness length
options:
do_stl: True # Create terrain stl
do_mesh: True # Create mesh
do_z0: True # Create roughness profile for fluent
do_bc: True # Create inlet profile for fluent
# do_site_plots: True
numerics:
iterations_init: 200 # Number of iteration for initialisation (no mean values)
iterations: 2000 # Max. Number of iterations for actual simulations
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment