Skip to content
Snippets Groups Projects

Master Thesis - Dechamps - Implementation of the linear part

Merged Dechamps Axel requested to merge Axel.Dechamps/fpm:master into master
1 unresolved thread
Files
2
+ 5
3
@@ -19,14 +19,16 @@
# Adrien Crovato
from fwk.testing import *
import math
def main():
p = {}
# geometry parameters
p['pars'] = {'wSpn' : 5, 'wNc' : 80, 'wNs' : 10, 'fWdt' : 10, 'nX' : 10, 'nY' : 10, 'nZ' : 4}
p['spn'] = 5
p['sym'] = 0
p['spn'] = 5 # true span if sym=0, half span if sym=1
p['pars'] = {'symY' : p['sym'], 'wSpn' : p['spn'], 'wNc' : 100, 'wNs' : 10, 'fWdt' : 10, 'nX' : 10, 'nY' : 10, 'nZ' : 4}
# flow parameters
p['aoa'] = 0
p['aoa'] = 3 * math.pi / 180
p['aos'] = 0
p['mach'] = 0.8
# run
Loading