Skip to content
Snippets Groups Projects
Commit e13a06be authored by andy's avatar andy
Browse files

BUG: Film diameter initialised to 0 instead of -1 - broke with AMI functionality

parent e0eb0c03
Branches
Tags
No related merge requests found
......@@ -827,7 +827,7 @@ void kinematicSingleLayer::preEvolveRegion()
// availableMass_ = mass();
availableMass_ = netMass();
cloudMassTrans_ == dimensionedScalar("zero", dimMass, 0.0);
cloudDiameterTrans_ == dimensionedScalar("zero", dimLength, -1.0);
cloudDiameterTrans_ == dimensionedScalar("zero", dimLength, 0.0);
}
......
......@@ -139,7 +139,7 @@ void drippingInjection::correct
{
// Mass below minimum threshold - cannot be injected
massToInject[cellI] = 0.0;
diameterToInject[cellI] = -1.0;
diameterToInject[cellI] = 0.0;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment