mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 16:44:49 +01:00
All reactant structs have been removed. Tony's pressure uses mu in pressure term of log_k. Test cases run, discriminant check at 1e-8. Still want to optimize out some k_temp calls and checks for same T, P, mu. git-svn-id: svn://136.177.114.72/svn_GW/phreeqc3/trunk@6269 1feff8c3-07ed-0310-ac33-dd36852eb9cd
68 lines
1.3 KiB
C++
68 lines
1.3 KiB
C++
#if !defined(NUMKEYWORD_H_INCLUDED)
|
|
#define NUMKEYWORD_H_INCLUDED
|
|
|
|
#include <ostream> // std::ostream
|
|
#include <string> // std::string
|
|
#include "PHRQ_base.h"
|
|
class CParser;
|
|
|
|
class cxxNumKeyword: public PHRQ_base
|
|
{
|
|
public:
|
|
cxxNumKeyword(PHRQ_io *io=NULL);
|
|
virtual ~ cxxNumKeyword();
|
|
const std::string &Get_description() const
|
|
{
|
|
return this->description;
|
|
}
|
|
void Set_description(std::string str)
|
|
{
|
|
this->description = str;
|
|
}
|
|
void Set_description(const char *str)
|
|
{
|
|
if (str != NULL)
|
|
this->description = str;
|
|
}
|
|
|
|
int Get_n_user() const
|
|
{
|
|
return this->n_user;
|
|
}
|
|
void Set_n_user(int user)
|
|
{
|
|
this->n_user = user;
|
|
}
|
|
|
|
int Get_n_user_end() const
|
|
{
|
|
return this->n_user_end;
|
|
}
|
|
void Set_n_user_end(int user_end)
|
|
{
|
|
this->n_user_end = user_end;
|
|
}
|
|
void Set_n_user_both(int user_end)
|
|
{
|
|
this->n_user = this->n_user_end = user_end;
|
|
}
|
|
|
|
bool operator<(const cxxNumKeyword & key) const
|
|
{
|
|
return (this->n_user < key.n_user);
|
|
}
|
|
|
|
virtual void dump_xml(std::ostream & os, unsigned int indent = 0) const;
|
|
|
|
void read_number_description(CParser & parser);
|
|
void read_number_description(const std::string & line_in);
|
|
protected:
|
|
int n_user;
|
|
int n_user_end;
|
|
std::string description;
|
|
|
|
protected:
|
|
void read_number_description(std::istream & is);
|
|
};
|
|
#endif // !defined(NUMKEYWORD_H_INCLUDED)
|