LHS and RHS of + have different dimensions
-
@Aeronastro @administrators 试了一下,好像不行哦
-
Create time Create mesh for time = 0 Reading g PIMPLE: Operating solver in PISO mode Reading field p_rgh Reading field U Reading/calculating face flux field phi Constructing twoPhaseMixtureThermo Selecting thermodynamics package { type heRhoThermo; mixture pureMixture; transport sutherland; thermo hConst; equationOfState PengRobinsonGas; specie specie; energy sensibleEnthalpy; } Selecting thermodynamics package { type heRhoThermo; mixture pureMixture; transport sutherland; thermo hConst; equationOfState PengRobinsonGas; specie specie; energy sensibleEnthalpy; } Reading thermophysical properties --> FOAM Warning : From function GeometricField<Type, PatchField, GeoMesh>::readIfPresent() in file /opt/openfoam240/src/OpenFOAM/lnInclude/GeometricField.C at line 108 read option IOobject::MUST_READ or MUST_READ_IF_MODIFIED suggests that a read constructor for field rho1 would be more appropriate. --> FOAM Warning : From function GeometricField<Type, PatchField, GeoMesh>::readIfPresent() in file /opt/openfoam240/src/OpenFOAM/lnInclude/GeometricField.C at line 108 read option IOobject::MUST_READ or MUST_READ_IF_MODIFIED suggests that a read constructor for field rho2 would be more appropriate. Creating phaseChangeTwoPhaseMixture Selecting phaseChange model SchnerrSauer Calculating field g.h Selecting turbulence model type LESModel Selecting LES turbulence model oneEqEddy Selecting LES delta type smooth Selecting LES delta type cubeRootVol oneEqEddyCoeffs { ce 1.048; Prt 1; ck 0.094; } Creating field kinetic energy K No finite volume options present Courant Number mean: 4.9504176e-07 max: 1.9500023e-05 Starting time loop Courant Number mean: 4.9014036e-07 max: 1.9306953e-05 deltaT = 9.9009901e-09 Time = 9.90099e-09 PIMPLE: iteration 1 --> FOAM FATAL ERROR: LHS and RHS of + have different dimensions dimensions : [1 -3 0 0 0 0 0] + [0 0 0 0 0 0 0] From function operator+(const dimensionSet&, const dimensionSet&) in file dimensionSet/dimensionSet.C at line 478. FOAM aborting #0 Foam::error::printStack(Foam::Ostream&) at ??:? #1 Foam::error::abort() at ??:? #2 Foam::operator+(Foam::dimensionSet const&, Foam::dimensionSet const&) at ??:? #3 Foam::tmp<Foam::GeometricField<double, Foam::fvPatchField, Foam::volMesh> > Foam::operator+<Foam::fvPatchField, Foam::volMesh>(Foam::GeometricField<double, Foam::fvPatchField, Foam::volMesh> const&, Foam::dimensioned<double> const&) at ??:? #4 Foam::tmp<Foam::GeometricField<double, Foam::fvPatchField, Foam::volMesh> > Foam::operator+<Foam::fvPatchField, Foam::volMesh>(Foam::GeometricField<double, Foam::fvPatchField, Foam::volMesh> const&, double const&) at ??:? #5 Foam::phaseChangeTwoPhaseMixture::vDotAlphal() const at ??:? #6 ? at ??:? #7 __libc_start_main in "/lib/x86_64-linux-gnu/libc.so.6" #8 ? at ??:? 已放弃 (核心已转储) zhubin@zhubin-System-Product-Name:~/OpenFOAM/zhubin-2.4.0/run/tutorials/myFoam$
-
@Aeronastro
防止分母为0 ,我设置一个dimensionedScalar small_ ,
small = 1.0e-36 这样一个非常小的数可以吗?
volScalarField alphalCoeff(1.0/rho1() - alpha1_*(1.0/rho1() - 1.0/(rho2() + small())));
这样就可以算了:sunglasses: 请指教.. -
@Aeronastro 应该也可以的,刚才我忘记wmake那个库文件,直接wmake求解器了,先这样算着,我改天再试一下
-
@Aeronastro dimesionedScalar拼写错了,是dimensionedScalar;结尾还有分号“;”。