hpcflow.sdk.core.parameters.ValuePerturbation#
- class hpcflow.sdk.core.parameters.ValuePerturbation(name, path=None, multiplicative_factor=1, additive_factor=0)#
Bases:
AbstractInputValue
A perturbation applied to a value.
Methods
Make an instance of this class from JSON (or YAML) data.
Construct an instance from a specification dictionary.
Save value to a persistent workflow.
Serialize this object as a dictionary.
Serialize this object as an object structure that can be trivially converted to JSON.
Attributes
The additive factor to apply.
The multiplicative factor to apply.
The path to the value(s) to perturb.
The value itself.
The workflow containing this input value.
The name of this perturbation.
- Parameters:
- classmethod from_json_like(json_like, shared_data=None)#
Make an instance of this class from JSON (or YAML) data.
- Parameters:
json_like (Union[Dict, List]) – The data to deserialise.
shared_data (Optional[Dict[str, ObjectList]]) – Shared context data.
- Return type:
The deserialised object.
- classmethod from_spec(spec)#
Construct an instance from a specification dictionary.
- make_persistent(workflow, source)#
Save value to a persistent workflow.
- to_dict()#
Serialize this object as a dictionary.
- to_json_like(dct=None, shared_data=None, exclude=None, path=None)#
Serialize this object as an object structure that can be trivially converted to JSON. Note that YAML can also be produced from the result of this method; it just requires a different final serialization step.
- property value#
The value itself.
- property workflow#
The workflow containing this input value.