remove print staetements
This commit is contained in:
parent
b183252947
commit
e613cba376
@ -1365,7 +1365,7 @@ void Membrane::AssignCoefficients(int *Map, double *Psi, string method){
|
|||||||
|
|
||||||
if (method == "ones"){
|
if (method == "ones"){
|
||||||
/* Initializing */
|
/* Initializing */
|
||||||
printf(".... initialize permeable membrane \n");
|
//printf(".... initialize permeable membrane \n");
|
||||||
MassFractionIn = 1.0;
|
MassFractionIn = 1.0;
|
||||||
MassFractionOut = 1.0;
|
MassFractionOut = 1.0;
|
||||||
ThresholdMassFractionOut = 1.0;
|
ThresholdMassFractionOut = 1.0;
|
||||||
@ -1378,14 +1378,14 @@ void Membrane::AssignCoefficients(int *Map, double *Psi, string method){
|
|||||||
ThresholdMassFractionIn = 1.0;
|
ThresholdMassFractionIn = 1.0;
|
||||||
}
|
}
|
||||||
if (method == "impermeable"){
|
if (method == "impermeable"){
|
||||||
printf(".... impermeable membrane \n");
|
//printf(".... impermeable membrane \n");
|
||||||
MassFractionIn = 0.001;
|
MassFractionIn = 0.001;
|
||||||
MassFractionOut = 0.001;
|
MassFractionOut = 0.001;
|
||||||
ThresholdMassFractionOut = 0.001;
|
ThresholdMassFractionOut = 0.001;
|
||||||
ThresholdMassFractionIn = 0.0001;
|
ThresholdMassFractionIn = 0.0001;
|
||||||
}
|
}
|
||||||
if (method == "Na+"){
|
if (method == "Na+"){
|
||||||
printf(".... Na+ permeable membrane \n");
|
//printf(".... Na+ permeable membrane \n");
|
||||||
MassFractionIn = 0.05;
|
MassFractionIn = 0.05;
|
||||||
MassFractionOut = 0.05;
|
MassFractionOut = 0.05;
|
||||||
ThresholdMassFractionOut = 0.05;
|
ThresholdMassFractionOut = 0.05;
|
||||||
|
Loading…
Reference in New Issue
Block a user