modulus
#
- class ansys.dpf.core.operators.math.modulus.modulus(fields_container=None, config=None, server=None)#
Bases:
ansys.dpf.core.dpf_operator.Operator
Computes element-wise modulus of field containers containing complex fields.
- Parameters:
fields_container (FieldsContainer)
- Returns:
fields_container
- Return type:
Examples
>>> from ansys.dpf import core as dpf
>>> # Instantiate operator >>> op = dpf.operators.math.modulus()
>>> # Make input connections >>> my_fields_container = dpf.FieldsContainer() >>> op.inputs.fields_container.connect(my_fields_container)
>>> # Instantiate operator and connect inputs in one line >>> op = dpf.operators.math.modulus( ... fields_container=my_fields_container, ... )
>>> # Get output data >>> result_fields_container = op.outputs.fields_container()
Overview#
Returns the default config of the operator. |
Import detail#
from ansys.dpf.core.operators.math.modulus import modulus
Property detail#
- property modulus.inputs: InputsModulus#
Enables to connect inputs to the operator
- Returns:
An instance of InputsModulus.
- Return type:
inputs
- property modulus.outputs: OutputsModulus#
Enables to get outputs of the operator by evaluating it
- Returns:
An instance of OutputsModulus.
- Return type:
outputs
Method detail#
- static modulus.default_config(server: ansys.dpf.core.server_types.AnyServerType = None) ansys.dpf.core.config.Config #
Returns the default config of the operator.
This config can then be changed to the user needs and be used to instantiate the operator. The Configuration allows to customize how the operation will be processed by the operator.
- Parameters:
server – Server with channel connected to the remote or local instance. When
None
, attempts to use the global server.- Returns:
A new Config instance equivalent to the default config for this operator.
- Return type:
config