OpenBeam
C++ library for static analysis of mechanical structures
CElementSpringXY.h
1 /* +---------------------------------------------------------------------------+
2  | OpenBeam - C++ Finite Element Analysis library |
3  | |
4  | Copyright (C) 2010-2021 Jose Luis Blanco Claraco |
5  | University of Malaga |
6  | |
7  | OpenBeam is free software: you can redistribute it and/or modify |
8  | it under the terms of the GNU General Public License as published by |
9  | the Free Software Foundation, either version 3 of the License, or |
10  | (at your option) any later version. |
11  | |
12  | OpenBeam is distributed in the hope that it will be useful, |
13  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
14  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15  | GNU General Public License for more details. |
16  | |
17  | You should have received a copy of the GNU General Public License |
18  | along with OpenBeam. If not, see <http://www.gnu.org/licenses/>. |
19  | |
20  +---------------------------------------------------------------------------+
21  */
22 
23 #pragma once
24 
25 #include <memory>
26 
27 #include "CElement.h"
28 #include "types.h"
29 
30 namespace openbeam
31 {
35 class CElementSpringXY : public CElement,
36  public std::enable_shared_from_this<CElementSpringXY>
37 {
38  public:
41  const size_t from_node_id, const size_t to_node_id, const num_t Kx,
42  const num_t Ky);
43 
48  std::vector<TStiffnessSubmatrix>& outSubMats) const override;
49 
50  void getLocalDoFs(std::vector<used_DoFs_t>& dofs) const override;
51 
52  num_t Kx, Ky;
53 
59  const mrpt::containers::yaml& p, const EvaluationContext& ctx) override;
60 
64  void drawSVG(
65  void* _cairo_context, const DrawStructureOptions& options,
66  const RenderInitData& ri, const DrawElementExtraParams& draw_el_params,
67  const MeshOutputInfo* meshing_info) const override;
68  mrpt::opengl::CSetOfObjects::Ptr getVisualization(
69  const DrawStructureOptions& options,
70  const DrawElementExtraParams& draw_el_params,
71  const MeshOutputInfo* meshing_info) const override
72  {
73  return {};
74  }
75 
77  void do_mesh(
78  const size_t my_idx, CStructureProblem& out_fem,
79  MeshOutputInfo& out_info, const MeshParams& params) override;
80 };
81 } // namespace openbeam
Definition: CElementSpringXY.h:37
void getLocalDoFs(std::vector< used_DoFs_t > &dofs) const override
void loadParamsFromSet(const mrpt::containers::yaml &p, const EvaluationContext &ctx) override
void do_mesh(const size_t my_idx, CStructureProblem &out_fem, MeshOutputInfo &out_info, const MeshParams &params) override
void getLocalStiffnessMatrices(std::vector< TStiffnessSubmatrix > &outSubMats) const override
num_t Ky
Stiffness constants of the spring (N/m)
Definition: CElementSpringXY.h:52
void drawSVG(void *_cairo_context, const DrawStructureOptions &options, const RenderInitData &ri, const DrawElementExtraParams &draw_el_params, const MeshOutputInfo *meshing_info) const override
Definition: CElement.h:49
Definition: CStructureProblem.h:36
Definition: DrawStructureOptions.h:103
Definition: DrawStructureOptions.h:34
Definition: types.h:161
Definition: CFiniteElementProblem.h:138
Definition: CFiniteElementProblem.h:128
Definition: DrawStructureOptions.h:115