|
suanPan
🧮 An Open Source, Parallel and Heterogeneous Finite Element Analysis Framework
|
#include <LeeNewmark.h>
Public Member Functions | |
| LeeNewmark (unsigned, vec &&, vec &&, double, double) | |
Public Member Functions inherited from LeeNewmark | |
| LeeNewmark (unsigned, vec &&, vec &&, double, double) | |
| int | initialize () override |
| int | process_constraint () override |
| int | process_constraint_resistance () override |
| void | assemble_resistance () override |
| void | assemble_effective_matrix () override |
| void | print () override |
Public Member Functions inherited from LeeNewmarkBase | |
| LeeNewmarkBase (unsigned, double, double, StiffnessType=StiffnessType::CURRENT) | |
| int | initialize () override |
| int | update_internal (const mat &) final |
| int | solve (mat &, const mat &) final |
| int | solve (mat &, const sp_mat &) final |
| int | solve (mat &, mat &&) final |
| int | solve (mat &, sp_mat &&) final |
| vec | get_force_residual () final |
| vec | get_displacement_residual () final |
| void | commit_status () final |
| void | clear_status () final |
| void | reset_status () final |
Public Member Functions inherited from Newmark | |
| Newmark (unsigned=0, double=.25, double=.5) | |
| void | assemble_resistance () override |
| void | assemble_effective_matrix () override |
| int | update_trial_status (bool) override |
| vec | from_incre_velocity (const vec &, const uvec &) override |
| vec | from_incre_acceleration (const vec &, const uvec &) override |
| void | print () override |
Public Member Functions inherited from ImplicitIntegrator | |
| Type | type () const final |
| void | assemble_matrix () override |
| Integrator (unsigned=0) | |
Public Member Functions inherited from Integrator | |
| Integrator (unsigned=0) | |
| void | set_domain (const std::weak_ptr< DomainBase > &) |
| shared_ptr< DomainBase > | get_domain () const |
| void | set_time_step_switch (bool) |
| bool | allow_to_change_time_step () const |
| void | set_matrix_assembled_switch () |
| bool | matrix_is_assembled () const |
| virtual bool | time_independent_matrix () const |
| int | process_load () |
| int | process_criterion () const |
| int | process_modifier () const |
| int | process_load_resistance () |
| void | record () const |
| vec | get_auxiliary_residual () const |
| virtual sp_mat | get_reference_load () |
| virtual const vec & | get_trial_displacement () const |
| void | update_load () const |
| void | update_constraint () const |
| void | update_trial_load_factor (double) const |
| void | update_trial_load_factor (const vec &) const |
| virtual void | update_from_ninja () |
| void | update_trial_time (double) |
| virtual void | update_incre_time (double) |
| int | sync_status (bool) |
| mat | solve (const mat &) |
| mat | solve (const sp_mat &) |
| mat | solve (mat &&) |
| mat | solve (sp_mat &&) |
| void | erase_machine_error (vec &) const |
| void | stage_and_commit_status () |
| void | stage_status () const |
| virtual vec | from_total_velocity (const vec &, const uvec &) |
| virtual vec | from_total_acceleration (const vec &, const uvec &) |
| vec | from_incre_velocity (double, const uvec &) |
| vec | from_incre_acceleration (double, const uvec &) |
| vec | from_total_velocity (double, const uvec &) |
| vec | from_total_acceleration (double, const uvec &) |
Public Member Functions inherited from UniqueTag | |
| UniqueTag (const UniqueTag &)=delete | |
| UniqueTag (UniqueTag &&)=delete | |
| UniqueTag & | operator= (const UniqueTag &)=delete |
| UniqueTag & | operator= (UniqueTag &&)=delete |
| ~UniqueTag () override=default | |
| Tag (unsigned=0) | |
| Tag (const Tag &)=default | |
| Tag (Tag &&) noexcept=default | |
Public Member Functions inherited from Tag | |
| Tag (unsigned=0) | |
| Tag (const Tag &)=default | |
| Tag (Tag &&) noexcept=default | |
| Tag & | operator= (const Tag &)=delete |
| Tag & | operator= (Tag &&)=delete |
| virtual | ~Tag ()=default |
| void | set_tag (unsigned) const |
| unsigned | get_tag () const |
| void | enable () |
| void | disable () |
| void | guard () |
| void | unguard () |
| bool | is_active () const |
| bool | is_guarded () const |
Additional Inherited Members | |
Public Types inherited from LeeNewmarkBase | |
| enum class | StiffnessType : std::uint8_t { INITIAL , CURRENT , TRIAL } |
Public Types inherited from Integrator | |
| enum class | Type { Implicit , Explicit } |
Protected Member Functions inherited from LeeNewmarkBase | |
| int | erase_top_left_block () const |
Protected Member Functions inherited from Newmark | |
| void | update_parameter (double) override |
Protected Member Functions inherited from Integrator | |
| virtual int | process_load_impl (bool) |
| virtual int | process_constraint_impl (bool) |
| virtual bool | has_corrector () const |
| virtual int | correct_trial_status () |
Protected Attributes inherited from LeeNewmark | |
| shared_ptr< MetaMat< double > > | current_mass = nullptr |
| shared_ptr< MetaMat< double > > | current_stiffness = nullptr |
| shared_ptr< MetaMat< double > > | current_geometry = nullptr |
Protected Attributes inherited from LeeNewmarkBase | |
| const uword | n_block |
| const StiffnessType | stiffness_type |
| bool | first_iteration = true |
| vec | current_internal |
| vec | trial_internal |
| vec | residual |
| unique_ptr< MetaMat< double > > | stiffness = nullptr |
| shared_ptr< Factory< double > > | factory = nullptr |
Protected Attributes inherited from Newmark | |
| double | C0 = 0. |
| double | C1 = 0. |
| double | C2 = 0. |
| double | C3 = 0. |
| double | C4 = 0. |
| double | C5 = 0. |