Skip to content
Snippets Groups Projects

Extractors

Merged Boman Romain requested to merge extractors into master
2 files
+ 42
8
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 36
2
@@ -24,11 +24,45 @@ Post::~Post()
std::cout << "~Post()\n";
}
/// rebuild solution vectors for gmsh and add views
/// rebuild solution vectors for gmsh and add views:
///
/// X
/// Y
/// Z
/// displacement_vector
/// force_vector
/// stress_tensor
/// stress_xx
/// stress_yy
/// stress_zz
/// stress_xy
/// stress_xz
/// stress_yz
/// strain_tensor
/// strain_xx
/// strain_yy
/// strain_zz
/// strain_xy
/// strain_xz
/// strain_yz
/// smooth_stress_tensor
/// smooth_stress_xx
/// smooth_stress_yy
/// smooth_stress_zz
/// smooth_stress_xy
/// smooth_stress_xz
/// smooth_stress_yz
/// smooth_strain_tensor
/// smooth_strain_xx
/// smooth_strain_yy
/// smooth_strain_zz
/// smooth_strain_xy
/// smooth_strain_xz
/// smooth_strain_yz
void Post::build_views()
{
std::cout << "creating views...\n";
std::cout << "creating views..." << std::endl;
// nodal dofs
add_dofs_view(solver.pbl, solver.dofs, solver.X, solver.dofPart, solver.dofIdx);
Loading