Class for defining how the loads are going to be combined for an specific analysis.
More...
#include <LoadCombo.hpp>
Class for defining how the loads are going to be combined for an specific analysis.
- See also
- Load.hpp StaticAnalysis.hpp DynamicAnalysis.hpp
◆ LoadCombo()
LoadCombo::LoadCombo |
( |
std::string |
name, |
|
|
std::vector< unsigned int > |
loads, |
|
|
std::vector< double > |
factors |
|
) |
| |
Creates a LoadCombo object.
- Parameters
-
name | Name of the load combination object. |
loads | The load identifiers to be combined. |
factors | Numerical combinational values. |
- Note
- More details can be found at LoadCombo
- See also
- Load.
◆ ~LoadCombo()
LoadCombo::~LoadCombo |
( |
| ) |
|
◆ GetCombinationName()
std::string LoadCombo::GetCombinationName |
( |
| ) |
const |
Returns the loads to combine.
- Returns
- The name of the combination.
- See also
- LoadCombo::Name.
◆ GetLoadCombination()
std::vector<unsigned int> LoadCombo::GetLoadCombination |
( |
| ) |
const |
◆ GetLoadFactors()
std::vector<double> LoadCombo::GetLoadFactors |
( |
| ) |
const |
Returns the loads factors.
- Returns
- List with the combinational factors.
- Note
- More details can be found at LoadCombo
- See also
- LoadCombo::Factors.
◆ Factors
std::vector<double> LoadCombo::Factors |
|
private |
The factors of combination.
◆ Loads
std::vector<unsigned int> LoadCombo::Loads |
|
private |
The loads to be combined.
◆ Name
std::string LoadCombo::Name |
|
private |