Trilinos based (stochastic) FEM solvers
readnrldata.hpp
Go to the documentation of this file.
1 /*
2 Brian Staber (brian.staber@gmail.com)
3 */
4 
5 #ifndef READNRLDATA_HPP
6 #define READNRLDATA_HPP
7 
8 #include <stdio.h>
9 #include <iostream>
10 #include <istream>
11 #include <fstream>
12 #include <vector>
13 #include <iomanip>
14 
15 #include "Teuchos_RCP.hpp"
16 #include "Epetra_SerialDenseVector.h"
17 #include "Epetra_SerialDenseMatrix.h"
18 
20 {
21 public:
22 
24  Epetra_SerialDenseMatrix points, exx, eyy, exy, energy;
25  Epetra_SerialDenseVector boundaryconditions, angles;
26 
27  readnrldata(bool load, std::string & path);
28  ~readnrldata();
29 
30  void import_boundaryconditions(std::string & path);
31  void import_exp_points(std::string & path);
32  void import_expenergy(std::string & path);
33  void import_exp_def(std::string & path);
34 
35 };
36 #endif
void import_exp_points(std::string &path)
Definition: readnrldata.cpp:83
load('/home/s/staber/Trilinos_results/nrl/data/eij.mat')
Epetra_SerialDenseMatrix eyy
Definition: readnrldata.hpp:24
void import_exp_def(std::string &path)
Epetra_SerialDenseMatrix exy
Definition: readnrldata.hpp:24
readnrldata(bool load, std::string &path)
Definition: readnrldata.cpp:8
Epetra_SerialDenseVector boundaryconditions
Definition: readnrldata.hpp:25
void import_expenergy(std::string &path)
Definition: readnrldata.cpp:61
Epetra_SerialDenseVector angles
Definition: readnrldata.hpp:25
Epetra_SerialDenseMatrix energy
Definition: readnrldata.hpp:24
Epetra_SerialDenseMatrix points
Definition: readnrldata.hpp:24
void import_boundaryconditions(std::string &path)
Definition: readnrldata.cpp:29
Epetra_SerialDenseMatrix exx
Definition: readnrldata.hpp:24