@@ -88,10 +88,10 @@ class FDEMForwardOptions(BaseForwardOptions, BaseFDEMOptions):
8888 :param receivers_orientation: Orientation of the receivers provided as a group.
8989 :param z_real_channel_bool: Vertical (real) component of impedance channel boolean.
9090 :param z_imag_channel_bool: Vertical (imaginary) component of impedance channel boolean.
91- :param x_real_channel_bool : In-line (real) component of impedance channel boolean.
92- :param x_imag_channel_bool : In-line (imaginary) component of impedance channel boolean.
93- :param y_real_channel_bool : Cross-line (real) component of impedance channel boolean.
94- :param y_imag_channel_bool : Cross-line (imaginary) component of impedance channel
91+ :param y_real_channel_bool : In-line (real) component of impedance channel boolean.
92+ :param y_imag_channel_bool : In-line (imaginary) component of impedance channel boolean.
93+ :param x_real_channel_bool : Cross-line (real) component of impedance channel boolean.
94+ :param x_imag_channel_bool : Cross-line (imaginary) component of impedance channel
9595 :param models: Specify whether the models are provided in resistivity or conductivity.
9696 """
9797
@@ -109,10 +109,10 @@ class FDEMForwardOptions(BaseForwardOptions, BaseFDEMOptions):
109109 receivers_orientation : PropertyGroup | None = None
110110 z_real_channel_bool : bool = False
111111 z_imag_channel_bool : bool = False
112- x_real_channel_bool : bool = False
113- x_imag_channel_bool : bool = False
114112 y_real_channel_bool : bool = False
115113 y_imag_channel_bool : bool = False
114+ x_real_channel_bool : bool = False
115+ x_imag_channel_bool : bool = False
116116 models : ConductivityModelOptions
117117
118118
@@ -124,14 +124,14 @@ class FDEMInversionOptions(BaseFDEMOptions, BaseInversionOptions):
124124 :param z_real_uncertainty: Vertical (real) impedance uncertainty channel.
125125 :param z_imag_channel: Vertical (imaginary) impedance channel.
126126 :param z_imag_uncertainty: Vertical (imaginary) impedance uncertainty channel.
127- :param x_real_channel : In-line (real) impedance channel.
128- :param x_real_uncertainty : In-line (real) impedance uncertainty channel.
129- :param x_imag_channel : In-line (imaginary) impedance channel.
130- :param x_imag_uncertainty : In-line (imaginary) impedance uncertainty channel
131- :param y_real_channel : Cross-line (real) impedance channel.
132- :param y_real_uncertainty : Cross-line (real) impedance uncertainty channel.
133- :param y_imag_channel : Cross-line (imaginary) impedance channel.
134- :param y_imag_uncertainty : Cross-line (imaginary) impedance uncertainty channel
127+ :param y_real_channel : In-line (real) impedance channel.
128+ :param y_real_uncertainty : In-line (real) impedance uncertainty channel.
129+ :param y_imag_channel : In-line (imaginary) impedance channel.
130+ :param y_imag_uncertainty : In-line (imaginary) impedance uncertainty channel
131+ :param x_real_channel : Cross-line (real) impedance channel.
132+ :param x_real_uncertainty : Cross-line (real) impedance uncertainty channel.
133+ :param x_imag_channel : Cross-line (imaginary) impedance channel.
134+ :param x_imag_uncertainty : Cross-line (imaginary) impedance uncertainty channel
135135 :param models: Specify whether the models are provided in resistivity or conductivity.
136136 """
137137
@@ -151,14 +151,14 @@ class FDEMInversionOptions(BaseFDEMOptions, BaseInversionOptions):
151151 z_real_uncertainty : PropertyGroup | None = None
152152 z_imag_channel : PropertyGroup | None = None
153153 z_imag_uncertainty : PropertyGroup | None = None
154- x_real_channel : PropertyGroup | None = None
155- x_real_uncertainty : PropertyGroup | None = None
156- x_imag_channel : PropertyGroup | None = None
157- x_imag_uncertainty : PropertyGroup | None = None
158154 y_real_channel : PropertyGroup | None = None
159155 y_real_uncertainty : PropertyGroup | None = None
160156 y_imag_channel : PropertyGroup | None = None
161157 y_imag_uncertainty : PropertyGroup | None = None
158+ x_real_channel : PropertyGroup | None = None
159+ x_real_uncertainty : PropertyGroup | None = None
160+ x_imag_channel : PropertyGroup | None = None
161+ x_imag_uncertainty : PropertyGroup | None = None
162162
163163 models : ConductivityModelOptions
164164
0 commit comments