MCPcopy Create free account
hub / github.com/KratosMultiphysics/Kratos / GetSubModelPartNames

Method GetSubModelPartNames

kratos/sources/model_part.cpp:2175–2185  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2173}
2174
2175std::vector<std::string> ModelPart::GetSubModelPartNames() const
2176{
2177 std::vector<std::string> SubModelPartsNames;
2178 SubModelPartsNames.reserve(NumberOfSubModelParts());
2179
2180 for(auto& r_sub_model_part : mSubModelParts) {
2181 SubModelPartsNames.push_back(r_sub_model_part.Name());
2182 }
2183
2184 return SubModelPartsNames;
2185}
2186
2187void ModelPart::SetBufferSize(ModelPart::IndexType NewBufferSize)
2188{

Callers 15

ExecuteMethod · 0.80
ExecuteMethod · 0.80
CloneNodesToRefineMethod · 0.80
get_model_partMethod · 0.80
get_model_partMethod · 0.80

Calls 4

NumberOfSubModelPartsFunction · 0.85
reserveMethod · 0.45
push_backMethod · 0.45
NameMethod · 0.45