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
No related merge requests found
...@@ -827,7 +827,7 @@ void kinematicSingleLayer::preEvolveRegion() ...@@ -827,7 +827,7 @@ void kinematicSingleLayer::preEvolveRegion()
// availableMass_ = mass(); // availableMass_ = mass();
availableMass_ = netMass(); availableMass_ = netMass();
cloudMassTrans_ == dimensionedScalar("zero", dimMass, 0.0); 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 ...@@ -139,7 +139,7 @@ void drippingInjection::correct
{ {
// Mass below minimum threshold - cannot be injected // Mass below minimum threshold - cannot be injected
massToInject[cellI] = 0.0; massToInject[cellI] = 0.0;
diameterToInject[cellI] = -1.0; diameterToInject[cellI] = 0.0;
} }
} }
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment