|
[Sponsors] | |||||
MRF-Boundary Condition U and equivalent for SRF Urel |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|
|
#1 |
|
New Member
Daniel
Join Date: Feb 2024
Location: Austria
Posts: 7
Rep Power: 3 ![]() |
Hei,
i have a hard time bc I have to do a MRF and a SRF Simulation of a pump turbine- in my MRF my U look like this: Code:
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2012 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField uniform (0 0 0);
boundaryField
{
IF_LAUF_LEIT
{
type cylindricalInletVelocity;
axis (0 0 1);
origin (0 0 0);
axialVelocity constant 0;
radialVelocity constant -10;
rpm constant 800;;
value uniform (0 0 0);
}
IF_LAUF_SAUGROHR
{
type zeroGradient;
}
"(cP_cyclicA|cP_cyclicB)"
{
type cyclic;
}
"(NABE|KRANZ|SCHAUFEL)"
{
type fixedValue;
value uniform (0 0 0); //Wenn hier alle 3 Null stehen dann dreht es sich mit omega
}
}
// ************************************************************************* //
how can I find the equivalent for Urel for the SRF simulation. I found this in on of the tutorials Code:
dimensions [0 1 -1 0 0 0 0];
internalField uniform (0 0 0);
boundaryField
{
IF_LAUF_LEIT
{
type SRFVelocity;
inletValue uniform (-10 0 0);
relative no;
value uniform (0 0 0);
}
what exactly is the inlet value? and do I need to put relativ yes or no? To compare both simulation I need equal BC... But I don't understand if the SRFVelocity Vektor is in cartesian coordinates or also in cylindrical like the BC at the MRF ? Can someone help me please...
|
|
|
|
|
|
![]() |
| Tags |
| multi reference frame, openf, single reference frame |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Boundary condition to simulate X meters of pipe | ERodriguez | OpenFOAM Running, Solving & CFD | 1 | May 23, 2023 10:14 |
| Boundary condition: solidTraction question | bigphil | OpenFOAM CC Toolkits for Fluid-Structure Interaction | 5 | September 7, 2020 07:00 |
| Equivalent of fully-developed boundary condition in polar coordinate | mostanad | Main CFD Forum | 21 | February 23, 2019 07:36 |
| movingWallVelocity boundary condition | kkpal | OpenFOAM Running, Solving & CFD | 0 | October 15, 2016 11:12 |
| time vary boundary condition to simulate waves in interFoam or equivalent | haze_1986 | OpenFOAM Running, Solving & CFD | 0 | June 9, 2014 04:27 |