consistency update on read() for k0, epsilon0 and epsilonSmall

This commit is contained in:
andy 2008-06-24 13:35:51 +01:00
parent b1b7f4f42b
commit 2e51c93821

View File

@ -186,9 +186,9 @@ bool RASModel::read()
yPlusLam_ = yPlusLam(kappa_.value(), E_.value());
readIfPresent("k0", k0_);
readIfPresent("epsilon0", epsilon0_);
readIfPresent("epsilonSmall", epsilonSmall_);
k0_.readIfPresent(*this);
epsilon0_.readIfPresent(*this);
epsilonSmall_.readIfPresent(*this);
return true;
}