get_scalar_field_value#
- PostProcessor3DLayout.get_scalar_field_value(quantity, scalar_function='Maximum', solution=None, variations=None, is_vector=False, intrinsics=None, phase=None, object_name='AllObjects', object_type='volume', adjacent_side=False)#
Use the field calculator to Compute Scalar of a Field.
- Parameters:
- quantity
str Name of the quantity to export. For example,
"Temp".- scalar_function
str,optional The name of the scalar function. For example,
"Maximum","Integrate". The default is"Maximum".- solution
str,optional Name of the solution in the format
"solution : sweep". The default isNone.- variations
dict,optional Dictionary of all variation variables with their values. e.g.
['power_block:=', ['0.6W'], 'power_source:=', ['0.15W']]The default isNone.- is_vectorbool,
optional Whether the quantity is a vector. The default is
False.- intrinsics
dict,str,optional Intrinsic variables required to compute the field before the export. These are typically: frequency, time and phase. It can be provided either as a dictionary or as a string.
If it is a dictionary, keys depend on the solution type and can be expressed as: -
"Freq"or"Frequency". -"Time". -"Phase".If it is a string, it can either be
"Freq"or"Time"depending on the solution type. The default isNonein which case the intrinsics value is automatically computed based on the setup.- phase
str,optional Field phase. The default is
None.- object_name
str,optional Name of the object. For example,
"Box1". The default is"AllObjects".- object_type
str,optional Type of the object -
"volume","surface","point". The default is"volume".- adjacent_sidebool,
optional To query quantity value on adjacent side for object_type = “surface”, pass
True. The default isFalse.
- quantity
- Returns:
floatScalar field value.
References
>>> oModule.EnterQty >>> oModule.CopyNamedExprToStack >>> oModule.CalcOp >>> oModule.EnterQty >>> oModule.EnterVol >>> oModule.ClcEval >>> GetTopEntryValue
Examples
>>> from ansys.aedt.core import Hfss >>> aedtapp = Hfss() >>> # Intrinsics is explicitly provided as a dictionary. >>> intrinsics = {"Freq": "5GHz", "Phase": "180deg"} >>> min_value = aedtapp.post.get_scalar_field_value(quantity_name, "Minimum", setup_name, intrinsics=intrinsics) >>> plot1 = aedtapp.post.create_fieldplot_cutplane(cutlist, quantity_name, setup_name, intrinsics=intrinsics) >>> # Intrinsics is provided as a string. Phase is automatically assigned to 0deg. >>> min_value = aedtapp.post.get_scalar_field_value(quantity_name, "Minimum", setup_name, intrinsics="5GHz") >>> plot1 = aedtapp.post.create_fieldplot_cutplane(cutlist, quantity_name, setup_name, intrinsics="5GHz") >>> # Intrinsics is provided as a dictionary. Phase is automatically assigned to 0deg. >>> intrinsics = {"Freq": "5GHz"} >>> min_value = aedtapp.post.get_scalar_field_value(quantity_name, "Minimum", setup_name, intrinsics=intrinsics) >>> plot1 = aedtapp.post.create_fieldplot_cutplane(cutlist, quantity_name, setup_name, intrinsics=intrinsics) >>> # Intrinsics is not provided and is automatically computed from the setup. >>> min_value = aedtapp.post.get_scalar_field_value(quantity_name, "Minimum", setup_name) >>> plot1 = aedtapp.post.create_fieldplot_cutplane(cutlist, quantity_name, setup_name)