Fixed negative array indexing errors in negAtest

This commit is contained in:
Ray Speth 2012-02-23 21:24:58 +00:00
parent db8e338e52
commit e5fe4fff9c
2 changed files with 0 additions and 8 deletions

View file

@ -31,10 +31,8 @@ int main(int argc, char** argv)
int nr = iKin_ptr->nReactions();
cout << "Number of reactions = " << nr << endl;
int iH2 = gasTP->speciesIndex("H2");
int iH = gasTP->speciesIndex("H");
int iO2 = gasTP->speciesIndex("O2");
int iOH = gasTP->speciesIndex("OH");
int iH2O = gasTP->speciesIndex("H2O");
int iNH = gasTP->speciesIndex("NH");
int iNO = gasTP->speciesIndex("NO");
@ -44,10 +42,8 @@ int main(int argc, char** argv)
x[i] = 0.0;
}
x[iH2O] = 1.0 /2.0;
x[iOH] = 0.1 /2.0;
x[iH] = 0.2 /2.0;
x[iO2] = 0.3 /2.0;
x[iH2] = 0.25 /2.0;
x[iNH] = 0.05/2.0;
x[iNO] = 0.05/2.0;
x[iN2O] = 0.05/2.0;

View file

@ -33,10 +33,8 @@ int main(int argc, char** argv)
int nr = iKin_ptr->nReactions();
cout << "Number of reactions = " << nr << endl;
int iH2 = gasTP->speciesIndex("H2");
int iH = gasTP->speciesIndex("H");
int iO2 = gasTP->speciesIndex("O2");
int iOH = gasTP->speciesIndex("OH");
int iH2O = gasTP->speciesIndex("H2O");
int iNH = gasTP->speciesIndex("NH");
int iNO = gasTP->speciesIndex("NO");
@ -46,10 +44,8 @@ int main(int argc, char** argv)
x[i] = 0.0;
}
x[iH2O] = 1.0 /2.0;
x[iOH] = 0.1 /2.0;
x[iH] = 0.2 /2.0;
x[iO2] = 0.3 /2.0;
x[iH2] = 0.25 /2.0;
x[iNH] = 0.05/2.0;
x[iNO] = 0.05/2.0;
x[iN2O] = 0.05/2.0;