fix error message

This commit is contained in:
Daniel
2018-07-23 12:25:15 +02:00
committed by GitHub
parent c47584d6de
commit 5259324950

View File

@ -73,7 +73,7 @@ GaussVoidFraction::GaussVoidFraction
//reading maxCellsPerParticle from dictionary
maxCellsPerParticle_=readLabel(propsDict_.lookup("maxCellsPerParticle"));
if(alphaMin_ > 1 || alphaMin_ < 0.01){ FatalError<< "alphaMin shloud be > 1 and < 0.01." << abort(FatalError); }
if(alphaMin_ > 1 || alphaMin_ < 0.01) { FatalError << "alphaMin must have a value between 0.01 and 1.0." << abort(FatalError); }
checkWeightNporosity(propsDict_);
}