Rheolef  7.2
an efficient C++ finite element environment
 
Loading...
Searching...
No Matches
combustion_post.cc
Go to the documentation of this file.
1
25#include "rheolef.h"
26using namespace rheolef;
27using namespace std;
28#include "combustion.h"
29int main(int argc, char**argv) {
30 environment rheolef (argc,argv);
31 field uh;
32 dout << setprecision(numeric_limits<Float>::digits10)
33 << "# lambda det_mantissa det_exp det_base" << endl;
34 combustion F;
35 while (F.get(din,uh)) {
36 F.reset (uh.get_geo(), uh.get_approx());
37 problem::determinant_type det = F.update_derivative(uh);
38 dout << F.parameter() << " " << det.mantissa << " "
39 << det.exponant << " " << det.base << endl;
40 }
41}
see the field page for the full documentation
see the environment page for the full documentation
The combustion problem: class header for the Newton method.
int main()
Definition field2bb.cc:58
This file is part of Rheolef.
STL namespace.
rheolef - reference manual
float_type parameter() const
Definition combustion.h:34
problem::determinant_type update_derivative(const field &uh) const
void reset(const geo &omega, string approx)
idiststream & get(idiststream &is, field &uh)