1#ifndef RPG_BASIS_FIELD_STATE_TPP
2#define RPG_BASIS_FIELD_STATE_TPP
11#include "BasisFieldState.h"
12#include "FieldState.tpp"
13#include <rpg/System.h>
14#include <prdc/crystal/Basis.h>
56 int nMonomer = system().mixture().nMonomer();
58 if (fields().isAllocated()) {
61 fields().allocate(nMonomer);
64 int nBasis = system().basis().nBasis();
66 for (
int i = 0; i < nMonomer; ++i) {
67 if (field(i).isAllocated()) {
70 field(i).allocate(nBasis);
83 system().fieldIo().readFieldsBasis(filename, fields(), unitCell());
92 system().fieldIo().writeFieldsBasis(filename, fields(), unitCell());
102 unitCell() = system().unitCell();
105 int nMonomer = system().mixture().nMonomer();
106 int nBasis = system().basis().nBasis();
108 for (i = 0; i < nMonomer; ++i) {
111 for (j = 0; j < nBasis; ++j) {
112 stateField[j] = systemField[j];
124 system().setWBasis(fields());
127 system().setUnitCell(unitCell());
void allocate()
Allocate all fields.
void getSystemState()
Copy the current state of the associated system.
void read(const std::string &filename)
Read state from file.
BasisFieldState()
Default constructor.
~BasisFieldState()
Destructor.
void setSystemState(bool newCellParams)
Set the state of the associated system to this state.
void write(const std::string &filename)
Write state to file.
Record of a state of a System (fields + unit cell).
Main class for calculations that represent one system.
Dynamically allocatable contiguous array template.
File containing preprocessor macros for error handling.
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Periodic fields and crystallography.
PSCF package top-level namespace.
Utility classes for scientific computation.