add_internal_node#
- NetworkObject.add_internal_node(name, power, mass=None, specific_heat=None)#
Add an internal node to the network.
- Parameters:
- name
str Name of the node.
- power
strorfloatordict String, float, or dictionary containing the value of the assignment. If a float is passed, the
"W"unit is used. A dictionary can be passed to use temperature-dependent or transient assignments.- mass
strorfloat,optional Value of the mass assignment. This parameter is relevant only if the solution is transient. If a float is passed, the
"Kg"unit is used. The default isNone, in which case"0.001kg"is used.- specific_heat
strorfloat,optional Value of the specific heat assignment. This parameter is relevant only if the solution is transient. If a float is passed, the
"J_per_Kelkg"unit is used. The default isNone`, in which case ``"1000J_per_Kelkg"is used.
- name
- Returns:
- bool
Truewhen successful,Falsewhen failed.
Examples
>>> import ansys.aedt.core >>> app = ansys.aedt.core.Icepak() >>> network = ansys.aedt.core.modules.boundary.Network(app) >>> network.add_internal_node("TestNode", {"Type": "Transient", >>> "Function": "Linear", "Values": ["0.01W", "1"]})