Turned off a print statement.
Added ct_defs.h and thus config.h to the .h files.
This commit is contained in:
parent
e58194df44
commit
6523642dd4
2 changed files with 7 additions and 2 deletions
|
|
@ -262,8 +262,12 @@ namespace VCSnonideal {
|
|||
pmoles[0] = m_mix->phaseMoles(0);
|
||||
double Tmoles = pmoles[0];
|
||||
double HperMole = Hnow/Tmoles;
|
||||
plogf("T = %g, Hnow = %g ,Tmoles = %g, HperMole = %g\n",
|
||||
Tnow, Hnow, Tmoles, HperMole);
|
||||
if (printLvl > 0) {
|
||||
plogf("T = %g, Hnow = %g ,Tmoles = %g, HperMole = %g",
|
||||
Tnow, Hnow, Tmoles, HperMole);
|
||||
plogendl();
|
||||
}
|
||||
|
||||
// the equilibrium enthalpy monotonically increases with T;
|
||||
// if the current value is below the target, then we know the
|
||||
// current temperature is too low. Set the lower bounds.
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@
|
|||
#include <vector>
|
||||
#include <string>
|
||||
|
||||
#include "ct_defs.h"
|
||||
#include "vcs_defs.h"
|
||||
#include "vcs_DoubleStarStar.h"
|
||||
#include "vcs_IntStarStar.h"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue