PSCF v1.2
pscf_pc.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 <prdc/crystal/getDimension.h>
9#include <rpc/System.h>
10
11#ifdef PSCF_OPENMP
12#include <pscf/openmp/getNThread.h>
13#include <omp.h>
14#endif
15
16#include <iostream>
17
18namespace Pscf {
19namespace Rpc {
20
28 template <int D>
29 void run(int argc, char **argv) {
30 System<D> system;
31
32 // Process command line options
33 system.setOptions(argc, argv);
34
35 // Read parameters from default parameter file
36 system.readParam();
37
38 // Read command script to run system
39 system.readCommands();
40 }
41
42}
43}
44
52int main(int argc, char **argv)
53{
54
55 // Extract the dimension of space from argument of -d option
56 int D = Pscf::Prdc::getDimension(argc, argv);
57 std::cout << "dimension " << D << std::endl;
58
59 #ifdef PSCF_OPENMP
60 int nThread = Pscf::getNThread(argc, argv);
61 if (nThread > 0) {
62 fftw_init_threads();
63 }
64 #endif
65
66 if (1 == D) {
67 Pscf::Rpc::run<1>(argc, argv);
68 } else
69 if (2 == D) {
70 Pscf::Rpc::run<2>(argc, argv);
71 } else
72 if (3 == D) {
73 Pscf::Rpc::run<3>(argc, argv);
74 } else {
75 std::cout << " Invalid dimension = " << D << std::endl;
76 }
77
78 #ifdef PSCF_OPENMP
79 if (nThread > 0) {
80 fftw_cleanup_threads();
81 } else {
82 fftw_cleanup();
83 }
84 #else
85 fftw_cleanup();
86 #endif
87
88}
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
void setOptions(int argc, char **argv)
Process command line options.
void readCommands(std::istream &in)
Read and process commands from an input stream.
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_pc program.
Definition pscf_pc.cpp:29
PSCF package top-level namespace.
Definition param_pc.dox:1