Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90700864
canonicalizer.hpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Nov 3, 23:58
Size
1 KB
Mime Type
text/x-c++
Expires
Tue, Nov 5, 23:58 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22121407
Attached To
rSPECMICP SpecMiCP / ReactMiCP
canonicalizer.hpp
View Options
/*-------------------------------------------------------
- Module : database
- File : canonicalizer
- Author : Fabien Georget
Copyright (c) 2014, Fabien Georget, Princeton University
---------------------------------------------------------*/
#ifndef SPECMICP_DATABASE_CANONICALIZER
#define SPECMICP_DATABASE_CANONICALIZER
//! \file canonicalizer Transform a database into canonical form
#include "module.hpp"
namespace specmicp {
namespace database {
//! \brief Transform a database into canonical form
//!
//! Canonical form means that every secondary species are written as function of the components
//!
//! P.S : what a great name
class DatabaseCanonicalizer: public DatabaseModule
{
public:
DatabaseCanonicalizer(RawDatabasePtr thedata):
DatabaseModule(thedata)
{}
//! \brief Transform the database into canonical form
//!
//! This process is necessary before any computation
void make_canonical();
private:
//! \brief transform the aqueous system into a canonical form
void make_aqueous_canonical();
//! \brief transform the mineral system into a canonical form
void make_mineral_canonical();
//! \brief transform the mineral (governed by kineticS) system into a canonical form
void make_mineral_kinetic_canonical();
};
inline void canonicalize_database(DatabaseCanonicalizer::RawDatabasePtr data)
{
DatabaseCanonicalizer(data).make_canonical();
}
} // end namespace database
} // end namespace specmicp
#endif // SPECMICP_DATABASE_CANONICALIZER
Event Timeline
Log In to Comment