*** empty log message ***

This commit is contained in:
Dave Goodwin 2004-04-23 16:35:00 +00:00
parent 529fa6b751
commit d4c86eb3ff
3 changed files with 8 additions and 8 deletions

View file

@ -236,12 +236,7 @@ class species(writer):
charge = -999):
self._name = name
self._atoms = getAtomicComp(atoms)
#mw = 0.0
#for a in self._atoms.keys():
# mw += self._atoms[a]*float(_atw[a])
#self._mw = mw
#global _mw
#_mw[name] = mw
self._comment = note
if thermo:
@ -1363,7 +1358,10 @@ validate()
# $Revision$
# $Date$
# $Log$
# Revision 1.31 2004-03-12 05:59:59 dggoodwin
# Revision 1.32 2004-04-23 16:35:32 dggoodwin
# *** empty log message ***
#
# Revision 1.31 2004/03/12 05:59:59 dggoodwin
# *** empty log message ***
#
# Revision 1.30 2004/02/08 13:25:21 dggoodwin

View file

@ -24,7 +24,6 @@ namespace Cantera {
CanteraError() {}
CanteraError(string proc, string msg) {
setError(proc, msg);
writelog("Throwing CanteraError. "+proc+" "+msg+"\n");
//m_msg = msg;
}
virtual ~CanteraError(){}

View file

@ -27,7 +27,10 @@
// job = 0: print a one-line description of the example.
// job = 1: print a longer description
// job = 2: print description, then run the example.
//
// Note: although this simulation can be done in C++, as shown here,
// it is much easier in Python or Matlab!
int kinetics_example1(int job) {