36           "[thermoelastic],[load]")
    48     temperature_load.
add(temperature_f);                               
    49     temperature_load.
add(ref_temperature_f);                           
    51     REQUIRE( temperature_load.
contains(
"temperature") );
    52     REQUIRE( temperature_load.
contains(
"ref_temperature") );
    53     REQUIRE( temperature_load.
depends_on(temperature) );
    54     REQUIRE( temperature_load.
depends_on(ref_temperature) );
 
This is a scalar function whose value can be changed and one that can be used as a design variable in...
void add(MAST::FunctionBase &f)
adds the function to this card and returns a reference to it. 
bool contains(const std::string &nm) const
checks if the card contains the specified property value 
TEST_CASE("create_thermoelastic_load", "[thermoelastic],[load]")
NOTE: In this test, we aren't really checking anything new that wasn't already checked in the functio...
const ValType & get(const std::string &nm) const
returns a constant reference to the specified function 
MAST::BoundaryConditionType type() const
virtual bool depends_on(const MAST::FunctionBase &f) const
returns true if the property card depends on the function f