PSCF v1.2
UnitCell1.cpp
1/*
2* PSCF - Polymer Self-Consistent Field Theory
3*
4* Copyright 2016 - 2022, The Regents of the University of Minnesota
5* Distributed under the terms of the GNU General Public License.
6*/
7
8#include "UnitCell.h"
9#include <util/math/Constants.h>
10
11namespace Pscf {
12namespace Prdc {
13
14 using namespace Util;
15
16 /*
17 * Constructor.
18 */
20 : lattice_(Null)
21 {}
22
23 /*
24 * Set nParameter based on the lattice system.
25 */
27 {
28 UTIL_CHECK(lattice_ != UnitCell<1>::Null);
29 if (lattice_ == UnitCell<1>::Lamellar) {
30 nParameter_ = 1;
31 } else {
32 UTIL_THROW("Invalid lattice system value");
33 }
34 }
35
36 /*
37 * Set the Bravais and reciprocal lattice parameters.
38 */
39 void UnitCell<1>::setBasis()
40 {
41 UTIL_CHECK(lattice_ != UnitCell<1>::Null);
42 UTIL_CHECK(nParameter_ == 1);
43
44 rBasis_[0][0] = parameters_[0];
45 kBasis_[0][0] = 2.0*Constants::Pi/parameters_[0];
46 drBasis_[0](0,0) = 1.0;
47 }
48
49 /*
50 * Extract a UnitCell<1>::LatticeSystem from an istream as a string.
51 */
52 std::istream& operator >> (std::istream& in,
54 {
55
56 std::string buffer;
57 in >> buffer;
58 if (buffer == "Lamellar" || buffer == "lamellar") {
59 lattice = UnitCell<1>::Lamellar;
60 } else {
61 UTIL_THROW("Invalid UnitCell<1>::LatticeSystem value input");
62 }
63 return in;
64 }
65
66 /*
67 * Insert a UnitCell<1>::LatticeSystem to an ostream as a string.
68 */
69 std::ostream& operator << (std::ostream& out,
71 {
72 if (lattice == UnitCell<1>::Lamellar) {
73 out << "lamellar";
74 } else
75 if (lattice == UnitCell<1>::Null) {
76 out << "Null";
77 } else {
78 UTIL_THROW("Invalid value of UnitCell<1>::Lamellar");
79 }
80 return out;
81 }
82
83 /*
84 * Assignment operator.
85 */
87 {
88 if (lattice_ != UnitCell<1>::Null) {
89 UTIL_CHECK(other.lattice_ == lattice_);
90 }
91 isInitialized_ = false;
92 lattice_ = other.lattice_;
93 setNParameter();
94 UTIL_CHECK(nParameter_ == other.nParameter_);
95 for (int i = 0; i < nParameter_; ++i) {
96 parameters_[i] = other.parameters_[i];
97 }
98 setLattice();
99 return *this;
100 }
101
102 /*
103 * Set the lattice system, but not unit cell parameters.
104 */
106 {
107 UTIL_CHECK(lattice != UnitCell<1>::Null);
108 if (lattice_ != UnitCell<1>::Null) {
109 UTIL_CHECK(lattice == lattice_);
110 }
111 isInitialized_ = false;
112 lattice_ = lattice;
113 setNParameter();
114 }
115
116 /*
117 * Set state of the unit cell (lattice system and parameters).
118 */
120 FSArray<double, 6> const & parameters)
121 {
122 set(lattice);
123 UTIL_CHECK(parameters.size() == nParameter_);
124 for (int i = 0; i < nParameter_; ++i) {
125 parameters_[i] = parameters[i];
126 }
127 setLattice();
128 }
129
130 /*
131 * Get the length of the unit cell.
132 */
133 double UnitCell<1>::volume() const
134 {
135 return rBasis_[0][0];
136 }
137
138}
139}
FArray< double, 6 > parameters_
Parameters used to describe the unit cell.
int nParameter_
Number of parameters required to specify unit cell.
Base template for UnitCell<D> classes, D=1, 2 or 3.
Definition rpg/System.h:34
static const double Pi
Trigonometric constant Pi.
Definition Constants.h:35
A fixed capacity (static) contiguous array with a variable logical size.
Definition rpg/System.h:28
int size() const
Return logical size of this array (i.e., number of elements).
Definition FSArray.h:207
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Definition global.h:51
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.
std::istream & operator>>(std::istream &in, Pair< Data > &pair)
Input a Pair from an istream.
Definition Pair.h:44
std::ostream & operator<<(std::ostream &out, const Pair< Data > &pair)
Output a Pair to an ostream, without line breaks.
Definition Pair.h:57