PSCF v1.2
rpg/fts/compressor/CompressorFactory.tpp
1#ifndef RPG_COMPRESSOR_FACTORY_TPP
2#define RPG_COMPRESSOR_FACTORY_TPP
3
4#include "CompressorFactory.h"
5
6// Subclasses of Compressor
7#include "AmCompressor.h"
8#include "LrAmPreCompressor.h"
9#include "LrCompressor.h"
10#include "LrAmCompressor.h"
11
12namespace Pscf {
13namespace Rpg {
14
15 using namespace Util;
16
17 /*
18 * Constructor
19 */
20 template <int D>
22 : sysPtr_(&system)
23 {}
24
25 /*
26 * Return a pointer to a instance of Compressor subclass className.
27 */
28 template <int D>
30 CompressorFactory<D>::factory(std::string const &className) const
31 {
32 Compressor<D>* ptr = 0;
33
34 // Try subfactories first
35 ptr = trySubfactories(className);
36 if (ptr) return ptr;
37
38 // Try to match classname
39 if (className == "Compressor" || className == "AmCompressor") {
40 ptr = new AmCompressor<D>(*sysPtr_);
41 } else if (className == "LrAmPreCompressor") {
42 ptr = new LrAmPreCompressor<D>(*sysPtr_);
43 } else if (className == "LrCompressor") {
44 ptr = new LrCompressor<D>(*sysPtr_);
45 } else if (className == "LrAmCompressor") {
46 ptr = new LrAmCompressor<D>(*sysPtr_);
47 }
48
49 return ptr;
50 }
51
52}
53}
54#endif
Rpg implementation of the Anderson Mixing compressor.
CompressorFactory(System< D > &system)
Constructor.
Compressor< D > * factory(const std::string &className) const
Method to create any Compressor supplied with PSCF.
Base class for iterators that impose incompressibility.
Anderson Mixing compressor with linear-response mixing step.
Anderson Mixing compressor with linear-response preconditioning.
Main class for calculations that represent one system.
Definition rpg/System.h:107
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.