@@ -763,9 +763,9 @@ def __init__(self, add_methods: AddMethods):
763763 self ._add_methods = add_methods
764764
765765 def add_cord2r (self , cid : int ,
766- origin : Optional [ list [float ] | NDArray3float ] ,
767- zaxis : Optional [ list [float ] | NDArray3float ] ,
768- xzplane : Optional [ list [float ] | NDArray3float ] ,
766+ origin : list [float ] | NDArray3float ,
767+ zaxis : list [float ] | NDArray3float ,
768+ xzplane : list [float ] | NDArray3float ,
769769 rid : int = 0 , setup : bool = True , comment : str = '' ) -> CORD2R :
770770 """
771771 Creates the CORD2R card, which defines a rectangular coordinate
@@ -793,9 +793,9 @@ def add_cord2r(self, cid: int,
793793 return coord
794794
795795 def add_cord2c (self , cid : int ,
796- origin : Optional [ list [float ] | NDArray3float ] ,
797- zaxis : Optional [ list [float ] | NDArray3float ] ,
798- xzplane : Optional [ list [float ] | NDArray3float ] ,
796+ origin : list [float ] | NDArray3float ,
797+ zaxis : list [float ] | NDArray3float ,
798+ xzplane : list [float ] | NDArray3float ,
799799 rid : int = 0 , setup : bool = True , comment : str = '' ) -> CORD2C :
800800 """
801801 Creates the CORD2C card, which defines a cylindrical coordinate
@@ -823,9 +823,9 @@ def add_cord2c(self, cid: int,
823823 return coord
824824
825825 def add_cord2s (self , cid : int ,
826- origin : Optional [ list [float ] | NDArray3float ] ,
827- zaxis : Optional [ list [float ] | NDArray3float ] ,
828- xzplane : Optional [ list [float ] | NDArray3float ] ,
826+ origin : list [float ] | NDArray3float ,
827+ zaxis : list [float ] | NDArray3float ,
828+ xzplane : list [float ] | NDArray3float ,
829829 rid : int = 0 , setup : bool = True , comment : str = '' ) -> CORD2S :
830830 """
831831 Creates the CORD2C card, which defines a spherical coordinate
@@ -5361,7 +5361,7 @@ def add_qbdy3(self, sid: int, q0: float, eids: list[int],
53615361 a comment for the card
53625362
53635363 """
5364- load = QBDY3 (sid , q0 , cntrlnd , eids , comment = comment )
5364+ load = QBDY3 (sid , q0 , control_node , eids , comment = comment )
53655365 self ._add_methods .add_thermal_load_object (load )
53665366 return load
53675367
@@ -5542,7 +5542,8 @@ def add_phbdy(self, pid, af=None, d1=None, d2=None, comment='') -> PHBDY:
55425542 self ._add_methods .add_phbdy_object (prop )
55435543 return prop
55445544
5545- def add_conv (self , eid , pconid , ta , film_node = 0 , cntrlnd = 0 , comment = '' ) -> CONV :
5545+ def add_conv (self , eid , pconid , ta ,
5546+ film_node : int = 0 , control_node : int = 0 , comment = '' ) -> CONV :
55465547 """
55475548 Creates a CONV card
55485549
@@ -5559,14 +5560,14 @@ def add_conv(self, eid, pconid, ta, film_node=0, cntrlnd=0, comment='') -> CONV:
55595560 and higher
55605561 film_node : int; default=0
55615562 Point for film convection fluid property temperature
5562- cntrlnd : int; default=0
5563+ control_node : int; default=0
55635564 Control point for free convection boundary condition
55645565 comment : str; default=''
55655566 a comment for the card
55665567
55675568 """
55685569 boundary_condition = CONV (eid , pconid , ta ,
5569- film_node = film_node , cntrlnd = cntrlnd ,
5570+ film_node = film_node , control_node = control_node ,
55705571 comment = comment )
55715572 self ._add_methods .add_thermal_bc_object (boundary_condition , boundary_condition .eid )
55725573 return boundary_condition
@@ -5596,7 +5597,7 @@ def add_convm(self, eid, pconvm, ta1, film_node=0, cntmdot=0,
55965597 0/blank is only allowed when mdot > 0
55975598 mdot : float; default=1.0
55985599 a multiplier for the mass flow rate in case there is no
5599- point associated with the CNTRLND field
5600+ point associated with the CONTROL_NODE field
56005601 required if cntmdot = 0
56015602 comment : str; default=''
56025603 a comment for the card
@@ -5620,10 +5621,10 @@ def add_radm(self, radmid, absorb, emissivity, comment='') -> RADM:
56205621 self ._add_methods .add_thermal_bc_object (boundary_condition , boundary_condition .radmid )
56215622 return boundary_condition
56225623
5623- def add_radbc (self , nodamb : int , famb : float , cntrlnd : int , eids : list [int ],
5624+ def add_radbc (self , nodamb : int , famb : float , control_node : int , eids : list [int ],
56245625 comment : str = '' ) -> RADBC :
56255626 """Creates a RADBC card"""
5626- boundary_condition = RADBC (nodamb , famb , cntrlnd , eids , comment = comment )
5627+ boundary_condition = RADBC (nodamb , famb , control_node , eids , comment = comment )
56275628 self ._add_methods .add_thermal_bc_object (boundary_condition , boundary_condition .nodamb )
56285629 return boundary_condition
56295630
0 commit comments