PSCF v1.2
pscf_1d.cpp
Go to the documentation of this file.
1
2
3/*
4* PSCF - Polymer Self-Consistent Field Theory
5*
6* Copyright 2016 - 2022, The Regents of the University of Minnesota
7* Distributed under the terms of the GNU General Public License.
8*/
9
10#include <r1d/System.h>
11
19int main(int argc, char **argv)
20{
21 Pscf::R1d::System system;
22
23 // Process command line options
24 system.setOptions(argc, argv);
25
26 // Read parameters from default parameter file
27 system.readParam();
28
29 // Read command script to run system
30 system.readCommands();
31
32 return 0;
33}
Main class in SCFT simulation of one system.
Definition r1d/System.h:65
void readCommands(std::istream &in)
Read command script.
virtual void readParam(std::istream &in)
Read input parameters (with opening and closing lines).
void setOptions(int argc, char **argv)
Process command line options.
int main(int argc, char **argv)
Main function for pscf_1d program.
Definition pscf_1d.cpp:19