Skip to content
Snippets Groups Projects
Commit 958d120c authored by Anna Wellmann's avatar Anna Wellmann
Browse files

Poster20221219

parent e553f583
No related branches found
No related tags found
1 merge request!186Fix boundary condition edge diagonals
...@@ -126,7 +126,7 @@ void multipleLevel(const std::string& configPath) ...@@ -126,7 +126,7 @@ void multipleLevel(const std::string& configPath)
const real velocity = config.getValue<real>("Velocity"); const real velocity = config.getValue<real>("Velocity");
const real L_x = 4*reference_diameter; const real L_x = 3.5*reference_diameter;
const real L_y = 2.5*reference_diameter; const real L_y = 2.5*reference_diameter;
const real L_z = 3*reference_diameter; const real L_z = 3*reference_diameter;
...@@ -250,7 +250,7 @@ void multipleLevel(const std::string& configPath) ...@@ -250,7 +250,7 @@ void multipleLevel(const std::string& configPath)
const real epsilon = dx*exp2(-level)*1.5; // width of gaussian smearing const real epsilon = dx*exp2(-level)*1.5; // width of gaussian smearing
const real density = 1.225f; const real density = 1.225f;
const uint nBlades = 3; const uint nBlades = 3;
const uint nBladeNodes = 32; const uint nBladeNodes = 401; // passt zu auflösung von 105 Knoten
const real tipspeed_ratio = 7.5f; // tipspeed ratio = angular vel * radius / inflow vel const real tipspeed_ratio = 7.5f; // tipspeed ratio = angular vel * radius / inflow vel
const real omega = 2*tipspeed_ratio*velocity/reference_diameter; const real omega = 2*tipspeed_ratio*velocity/reference_diameter;
......
This diff is collapsed.
################################################## ##################################################
#informations for Writing #informations for Writing
################################################## ##################################################
Path = /work/y0078217/Results/ActuatorLine Path = /work/y0078217/Results/ActuatorLine105
################################################## ##################################################
#informations for reading #informations for reading
################################################## ##################################################
GridPath=. GridPath=.
################################################## ##################################################
ReferenceDiameter=126 ReferenceDiameter=126
NodesPerDiameter=100 NodesPerDiameter=105
Velocity=9 Velocity=9
################################################## ##################################################
tStartOut=0 tStartOut=0
......
...@@ -358,8 +358,8 @@ __global__ void LB_Kernel_CumulantK17Sponge( ...@@ -358,8 +358,8 @@ __global__ void LB_Kernel_CumulantK17Sponge(
// 3. // 3.
// Calculate modified omega for sponge bob layer // Calculate modified omega for sponge bob layer
real startXsponge = 504.0f; real startXsponge = 441.0f;
real endXsponge = 454.0f; real endXsponge = 381.0f;
real sizeSponge = endXsponge - startXsponge; real sizeSponge = endXsponge - startXsponge;
real OxyyPxzz = c8o1 * (-c2o1 + omega) * (c1o1 + c2o1 * omega) / (-c8o1 - c14o1 * omega + c7o1 * omega * omega); real OxyyPxzz = c8o1 * (-c2o1 + omega) * (c1o1 + c2o1 * omega) / (-c8o1 - c14o1 * omega + c7o1 * omega * omega);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment