PSCF v1.2
pscf_pg.cu
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 <prdc/crystal/getDimension.h>
9#include <rpg/System.h>
10#include <iostream>
11
12namespace Pscf {
13namespace Rpg {
14
22 template <int D>
23 void run(int argc, char **argv) {
24
25 // Construct System object for specific dimension D.
26 System<D> system;
27
28 // Process command line options
29 system.setOptions(argc, argv);
30
31 // Read parameters from default parameter file
32 system.readParam();
33
34 // Read command script to run system
35 system.readCommands();
36
37 }
38
39}
40}
41
49int main(int argc, char **argv)
50{
51
52 // Extract the dimension of space from argument of -d option
53 int D = Pscf::Prdc::getDimension(argc, argv);
54 std::cout << "dimension " << D << std::endl;
55
56 if (1 == D) {
57 Pscf::Rpg::run<1>(argc, argv);
58 } else
59 if (2 == D) {
60 Pscf::Rpg::run<2>(argc, argv);
61 } else
62 if (3 == D) {
63 Pscf::Rpg::run<3>(argc, argv);
64 } else {
65 std::cout << " Invalid dimension = " << D << std::endl;
66 }
67
68}
Main class for calculations that represent one system.
Definition rpg/System.h:107
void readCommands(std::istream &in)
Read and process commands from an input stream.
void setOptions(int argc, char **argv)
Process command line options.
virtual void readParam(std::istream &in)
Read input parameters (with opening and closing lines).
int main(int argc, char **argv)
Main function for pscf_1d program.
Definition pscf_1d.cpp:19
void run(int argc, char **argv)
Function template for main pscf_pg program.
Definition pscf_pg.cu:23
PSCF package top-level namespace.
Definition param_pc.dox:1