Skip to content
Snippets Groups Projects
Commit c0f4a483 authored by Norbert Grunwald's avatar Norbert Grunwald
Browse files

remove unnessecary comments

parent 4744f707
No related branches found
No related tags found
No related merge requests found
...@@ -37,8 +37,6 @@ std::unique_ptr<MaterialPropertyLib::Property> createProperty( ...@@ -37,8 +37,6 @@ std::unique_ptr<MaterialPropertyLib::Property> createProperty(
//! \ogs_file_param{properties__property__type} //! \ogs_file_param{properties__property__type}
auto const property_type = config.peekConfigParameter<std::string>("type"); auto const property_type = config.peekConfigParameter<std::string>("type");
// If (and only if) the given property type is 'constant', a corresponding
// value is needed.
if (property_type == "Constant") if (property_type == "Constant")
{ {
std::vector<double> const values = std::vector<double> const values =
...@@ -102,14 +100,6 @@ std::unique_ptr<MaterialPropertyLib::Property> createProperty( ...@@ -102,14 +100,6 @@ std::unique_ptr<MaterialPropertyLib::Property> createProperty(
PropertyDataType property_value; PropertyDataType property_value;
return std::make_unique<Constant>(property_value); return std::make_unique<Constant>(property_value);
} }
// Properties can be medium, phase, or component properties.
// Some of them require information about the respective material.
// Thus, we pass a pointer to the material that requests the property.
// In this method, this pointer is realized via typename MaterialType, which
// replaces either Medium*, Phase*, or Component*.
// Note that most property constructors (only those that request material
// pointers) must be overloaded for any type of material.
if (property_type == "Linear") if (property_type == "Linear")
{ {
auto const reference_value = auto const reference_value =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment