libMesh
fparser_parse.C
Go to the documentation of this file.
1 // The libMesh Finite Element Library.
2 // Copyright (C) 2002-2024 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner
3 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License, or (at your option) any later version.
8 
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 // Lesser General Public License for more details.
13 
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 
18 
19 
20 // Open the getpot input file given by the input file name; write out
21 // all GetPot object data to the output file name
22 #include "libmesh/libmesh_config.h"
23 #include "libmesh/parsed_function.h"
24 #include "libmesh/point.h"
25 
26 #include <cstdlib>
27 
28 int main(int argc, char ** argv)
29 {
30  using namespace libMesh;
31 
32  libmesh_error_msg_if(argc < 2, "Usage: " << argv[0] << " function_to_eval [x] [y] [z] [t]");
33 
34  std::string function_string = argv[1];
35 
36  ParsedFunction<> func(function_string);
37 
38  const Point p ( (argc > 2) ? std::atof(argv[2]) : 0.0,
39  (argc > 3) ? std::atof(argv[3]) : 0.0,
40  (argc > 4) ? std::atof(argv[4]) : 0.0 );
41 
42  const libMesh::Real t = (argc > 5) ? std::atof(argv[5]) : 0.0;
43 
44  const libMesh::Number out = func(p,t);
45 
46  libMesh::out << "out = " << out << std::endl;
47 
48  return 0;
49 }
A Function generated (via FParser) by parsing a mathematical expression.
The libMesh namespace provides an interface to certain functionality in the library.
int main(int argc, char **argv)
Definition: fparser_parse.C:28
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
OStreamProxy out
A Point defines a location in LIBMESH_DIM dimensional Real space.
Definition: point.h:39