diff --git a/pyaedt/application/Analysis3D.py b/pyaedt/application/Analysis3D.py index 654c966dbfb..db29e34ef64 100644 --- a/pyaedt/application/Analysis3D.py +++ b/pyaedt/application/Analysis3D.py @@ -438,9 +438,9 @@ def export_3d_model(self, fileName, filePath, fileFormat=".step", object_list=No fileFormat : str, optional Format of the file. The default is ``".step"``. object_list : list, optional - List of objects to export. The default is ``[]``. + List of objects to export. The default is ``None``. removed_objects : list, optional - The default is ``[]``. + The default is ``None``. Returns ------- diff --git a/pyaedt/application/AnalysisNexxim.py b/pyaedt/application/AnalysisNexxim.py index 698a3b65221..41ac15b5768 100644 --- a/pyaedt/application/AnalysisNexxim.py +++ b/pyaedt/application/AnalysisNexxim.py @@ -181,7 +181,7 @@ def get_all_return_loss_list(self, excitation_names=None, excitation_name_prefix Parameters ---------- excitation_names : list, optional - List of excitations. The default is ``[]``, in which case + List of excitations. The default is ``None``, in which case the return losses for all excitations are to be provided. For example ``["1", "2"]``. excitation_name_prefix : string, optional diff --git a/pyaedt/circuit.py b/pyaedt/circuit.py index 22c7eda0972..e9129208e8f 100644 --- a/pyaedt/circuit.py +++ b/pyaedt/circuit.py @@ -763,10 +763,10 @@ def export_touchstone(self, solutionname, sweepname, filename=None, variation=No which exports the file to the working directory. variation : list, optional List of all parameter variations. For example, ``["$AmbientTemp", "$PowerIn"]``. - The default is ``[]``. + The default is ``None``. variations_value : list, optional List of all parameter variation values. For example, ``["22cel", "100"]``. - The default is ``[]``. + The default is ``None``. Returns ------- diff --git a/pyaedt/icepak.py b/pyaedt/icepak.py index 1ac493a7757..06f30c47858 100644 --- a/pyaedt/icepak.py +++ b/pyaedt/icepak.py @@ -1451,14 +1451,14 @@ def assign_em_losses( String containing the frequency to map. The default is ``None``. The value must be ``None`` for Eigenmode analysis. surface_objects : list, optional - List of objects in the source that are metals. The default is ``[]``. + List of objects in the source that are metals. The default is ``None``. source_project_name : str, optional Name of the source project. The default is ``None``, in which case the source from the same project is used. paramlist :list, optional - List of all parameters in the EM to map. The default is ``[]``. + List of all parameters in the EM to map. The default is ``None``. object_list : list, optional - List of objects. The default is ``[]``. + List of objects. The default is ``None``. Returns ------- @@ -1758,7 +1758,7 @@ def export_summary( variation : str, optional The default is ``""``. variationlist : list, optional - The default is ``[]``. + The default is ``None``. Returns ------- diff --git a/pyaedt/modeler/PrimitivesEmit.py b/pyaedt/modeler/PrimitivesEmit.py index 79d403f1b5c..d42b3b9298d 100644 --- a/pyaedt/modeler/PrimitivesEmit.py +++ b/pyaedt/modeler/PrimitivesEmit.py @@ -417,7 +417,7 @@ def get_prop_nodes(self, property_filter=None): Args: property_filter (dict, optional): Only return nodes with all - the property name,value pairs of this dict. Defaults to {} + the property name, value pairs of this dict. Defaults to ``None`` which returns all nodes. Returns: diff --git a/pyaedt/modeler/PrimitivesMaxwellCircuit.py b/pyaedt/modeler/PrimitivesMaxwellCircuit.py index f5060ffbb02..273f8601d3f 100644 --- a/pyaedt/modeler/PrimitivesMaxwellCircuit.py +++ b/pyaedt/modeler/PrimitivesMaxwellCircuit.py @@ -67,7 +67,7 @@ def create_resistor(self, compname=None, value=50, location=None, angle=0, use_i value : float, optional Value for the resistor. The default is ``50``. location : list of float, optional - Position on the X axis and Y axis. + Position on the X axis and Y axis. The default is ``None``. angle : float, optional Angle of rotation in degrees. The default is ``0``. use_instance_id_netlist : bool, optional @@ -110,7 +110,7 @@ def create_inductor(self, compname=None, value=50, location=None, angle=0, use_i value : float, optional Value for the inductor. The default is ``50``. location : list of float, optional - Position on the X axis and Y axis. + Position on the X axis and Y axis. The default is ``None``. angle : float, optional Angle rotation in degrees. The default is ``0``. use_instance_id_netlist : bool, optional @@ -189,7 +189,7 @@ def create_diode(self, compname=None, location=None, angle=0, use_instance_id_ne compname : str, optional Name of the diode. The default is ``None``. location : list of float, optional - Position on the X axis and Y axis. + Position on the X axis and Y axis. The default is ``None``. angle : float, optional Angle of rotation in degrees. The default is ``0``. use_instance_id_netlist : bool, optional diff --git a/pyaedt/modeler/PrimitivesNexxim.py b/pyaedt/modeler/PrimitivesNexxim.py index a3b53e096b6..8a338096b56 100644 --- a/pyaedt/modeler/PrimitivesNexxim.py +++ b/pyaedt/modeler/PrimitivesNexxim.py @@ -540,7 +540,7 @@ def create_capacitor(self, compname=None, value=50, location=None, angle=0, use_ value : float, optional Capacitor value. The default is ``50``. location : list of float, optional - Position on the X axis and Y axis. + Position on the X axis and Y axis. The default is ``None``. angle : float, optional Angle rotation in degrees. The default is ``0``. use_instance_id_netlist : bool, optional @@ -584,7 +584,7 @@ def create_voltage_dc(self, compname=None, value=1, location=None, angle=0, use_ value : float, optional Voltage value. The default is ``50``. location : list of float, optional - Position on the X axis and Y axis. + Position on the X axis and Y axis. The default is ``None``. angle : float, optional Angle rotation in degrees. The default is ``0``. use_instance_id_netlist : bool, optional @@ -780,7 +780,7 @@ def create_coupling_inductors( value : float, optional Value for the coupling inductor. The default is ``1``. location : list of float, optional - Position on the X axis and Y axis. + Position on the X axis and Y axis. The default is ``None``. angle : float, optional Angle rotation in degrees. The default is ``0``. use_instance_id_netlist : bool, optional diff --git a/pyaedt/modeler/PrimitivesTwinBuilder.py b/pyaedt/modeler/PrimitivesTwinBuilder.py index 195b5048cb7..744fb258711 100644 --- a/pyaedt/modeler/PrimitivesTwinBuilder.py +++ b/pyaedt/modeler/PrimitivesTwinBuilder.py @@ -130,7 +130,7 @@ def create_inductor(self, compname=None, value=50, location=None, angle=0, use_i value : float, optional Value for the inductor. The default is ``50``. location : list of float, optional - Position on the X axis and Y axis. + Position on the X axis and Y axis. The default is ``None``. angle : float, optional Angle rotation in degrees. The default is ``0``. use_instance_id_netlist : bool, optional