OGS
ComputeNaturalCoordsResult.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) OpenGeoSys Community (opengeosys.org)
2// SPDX-License-Identifier: BSD-3-Clause
3
4#pragma once
5
6#include <vtkType.h>
7
8#include <Eigen/Core>
9
10namespace ApplicationUtils
11{
13{
14 Eigen::MatrixXd natural_coords;
15 Eigen::MatrixXd real_coords;
16 Eigen::VectorXd initial_anchor_stress;
17 Eigen::VectorXd maximum_anchor_stress;
18 Eigen::VectorXd residual_anchor_stress;
20 Eigen::VectorXd anchor_stiffness;
21 Eigen::VectorX<vtkIdType> bulk_element_ids;
22 Eigen::VectorX<vtkIdType> point_cloud_node_ids;
23 bool success;
24};
25} // namespace ApplicationUtils