PSCF v1.2
UnitCell.h
1#ifndef PRDC_UNIT_CELL_H
2#define PRDC_UNIT_CELL_H
3
4/*
5* PSCF - Polymer Self-Consistent Field Theory
6*
7* Copyright 2016 - 2022, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include "UnitCellBase.h"
12#include <iostream>
13#include <iomanip>
14
15namespace Pscf {
16namespace Prdc {
17
18 using namespace Util;
19
52 template <int D>
53 class UnitCell : public UnitCellBase<D>
54 {};
55
56 // Function declations (friends of explicit instantiations)
57
69 template <int D>
70 std::istream& operator >> (std::istream& in, UnitCell<D>& cell);
71
80 template <int D>
81 std::ostream& operator << (std::ostream& out, UnitCell<D> const& cell);
82
91 template <class Archive, int D>
92 void
93 serialize(Archive& ar, UnitCell<D>& cell, const unsigned int version);
94
109 template <int D>
110 void readUnitCellHeader(std::istream& in, UnitCell<D>& cell);
111
119 template <int D>
120 void writeUnitCellHeader(std::ostream& out, UnitCell<D> const& cell);
121
122 // 1D Unit Cell
123
129 template <>
130 class UnitCell<1> : public UnitCellBase<1>
131 {
132 public:
133
137 enum LatticeSystem {Lamellar, Null};
138
142 UnitCell();
143
153 UnitCell<1>& operator = (const UnitCell<1>& other);
154
166 void set(UnitCell<1>::LatticeSystem lattice);
167
178 void set(UnitCell<1>::LatticeSystem lattice,
180
187 { return lattice_; }
188
192 double volume() const;
193
195
196 private:
197
198 // Lattice type (lamellar or Null)
199 LatticeSystem lattice_;
200
201 // Set number of parameters required to describe current lattice type
202 void setNParameter();
203
204 // Set all internal data after setting parameter values
205 void setBasis();
206
207 // Private and unimplemented to prevent copy construction.
208 UnitCell(UnitCell<1> const &);
209
210 // friends:
211
212 template <int D>
213 friend std::istream& operator >> (std::istream&, UnitCell<D>& );
214
215 template <int D>
216 friend std::ostream& operator << (std::ostream&, UnitCell<D> const&);
217
218 template <class Archive, int D>
219 friend void serialize(Archive& , UnitCell<D>& , const unsigned int);
220
221 template <int D>
222 friend void readUnitCellHeader(std::istream&, UnitCell<D>& );
223
224 template <int D>
225 friend void writeUnitCellHeader(std::ostream&, UnitCell<D> const&);
226
227 };
228
237 std::istream& operator >> (std::istream& in,
239
248 std::ostream& operator << (std::ostream& out,
250
258 template <class Archive>
259 inline
260 void serialize(Archive& ar, UnitCell<1>::LatticeSystem& lattice,
261 const unsigned int version)
262 { serializeEnum(ar, lattice, version); }
263
264
265 // 2D Unit Cell
266
272 template <>
273 class UnitCell<2> : public UnitCellBase<2>
274 {
275 public:
276
280 enum LatticeSystem {Square, Rectangular, Rhombic, Hexagonal,
281 Oblique, Null};
282
286 UnitCell();
287
297 UnitCell<2>& operator = (const UnitCell<2>& other);
298
310 void set(UnitCell<2>::LatticeSystem lattice);
311
323 void set(UnitCell<2>::LatticeSystem lattice,
325
332 { return lattice_; }
333
337 double volume() const;
338
339 private:
340
341 // Lattice system (square, rectangular, etc.)
342 LatticeSystem lattice_;
343
344 // Set number of parameters required to describe current lattice type
345 void setNParameter();
346
347 // Set all internal data after setting parameter values
348 void setBasis();
349
350 // Private and unimplemented to prevent copy construction.
351 UnitCell(UnitCell<2> const &);
352
353 // friends:
354
355 template <int D>
356 friend std::istream& operator >> (std::istream&, UnitCell<D>& );
357
358 template <int D>
359 friend std::ostream& operator << (std::ostream&, UnitCell<D> const&);
360
361 template <class Archive, int D>
362 friend void serialize(Archive& , UnitCell<D>& , const unsigned int );
363
364 template <int D>
365 friend void readUnitCellHeader(std::istream&, UnitCell<D>& );
366
367 template <int D>
368 friend void writeUnitCellHeader(std::ostream&, UnitCell<D> const&);
369
370 };
371
380 std::istream& operator >> (std::istream& in,
382
390 std::ostream& operator << (std::ostream& out,
392
400 template <class Archive>
401 inline
402 void serialize(Archive& ar, UnitCell<2>::LatticeSystem& lattice,
403 const unsigned int version)
404 { serializeEnum(ar, lattice, version); }
405
406
407 // 3D crystal unit cell
408
414 template <>
415 class UnitCell<3> : public UnitCellBase<3>
416 {
417 public:
418
425 enum LatticeSystem {Cubic, Tetragonal, Orthorhombic, Monoclinic,
426 Triclinic, Rhombohedral, Hexagonal, Null};
427
431 UnitCell();
432
442 UnitCell<3>& operator = (const UnitCell<3>& other);
443
455 void set(UnitCell<3>::LatticeSystem lattice);
456
468 void set(UnitCell<3>::LatticeSystem lattice,
470
477 { return lattice_; }
478
482 double volume() const;
483
484 private:
485
486 LatticeSystem lattice_;
487
488 // Set number of parameters required to describe current lattice type
489 void setNParameter();
490
491 // Set all internal data after setting parameter values
492 void setBasis();
493
494 // Private and unimplemented to prevent copy construction.
495 UnitCell(UnitCell<3> const &);
496
497 // friends:
498
499 template <int D>
500 friend std::istream& operator >> (std::istream&, UnitCell<D>& );
501
502 template <int D>
503 friend std::ostream& operator << (std::ostream&, UnitCell<D> const&);
504
505 template <class Archive, int D>
506 friend void serialize(Archive& , UnitCell<D>& , const unsigned int);
507
508 template <int D>
509 friend void readUnitCellHeader(std::istream&, UnitCell<D>& );
510
511 template <int D>
512 friend void writeUnitCellHeader(std::ostream&, UnitCell<D> const&);
513
514 };
515
524 std::istream& operator >> (std::istream& in,
526
535 std::ostream& operator << (std::ostream& out,
537
545 template <class Archive>
546 inline
547 void serialize(Archive& ar, UnitCell<3>::LatticeSystem& lattice,
548 const unsigned int version)
549 { serializeEnum(ar, lattice, version); }
550
551}
552}
553#include "UnitCell.tpp"
554#endif
Base class template for a crystallographic unit cell.
bool isInitialized() const
Has this unit cell been initialized?
FSArray< double, 6 > parameters() const
Get the parameters of this unit cell.
LatticeSystem lattice() const
Return lattice system enumeration value.
Definition UnitCell.h:186
LatticeSystem
Enumeration of 1D lattice system types.
Definition UnitCell.h:137
LatticeSystem
Enumeration of 2D lattice system types.
Definition UnitCell.h:280
LatticeSystem lattice() const
Return lattice system enumeration value.
Definition UnitCell.h:331
LatticeSystem
Enumeration of the 7 possible 3D Bravais lattice systems.
Definition UnitCell.h:425
LatticeSystem lattice() const
Return lattice system enumeration value.
Definition UnitCell.h:476
Base template for UnitCell<D> classes, D=1, 2 or 3.
Definition rpg/System.h:34
A fixed capacity (static) contiguous array with a variable logical size.
Definition rpg/System.h:28
void readUnitCellHeader(std::istream &in, UnitCell< D > &cell)
Read UnitCell<D> from a field file header (fortran PSCF format).
Definition UnitCell.tpp:61
void writeUnitCellHeader(std::ostream &out, UnitCell< D > const &cell)
Write UnitCell<D> to a field file header (fortran PSCF format).
Definition UnitCell.tpp:91
void serializeEnum(Archive &ar, T &data, const unsigned int version=0)
Serialize an enumeration value.
Definition serialize.h:59
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