@@ -30,7 +30,7 @@ def dtime(sdat: StagyyData) -> Tseries:
3030 Compute dt as a function of time.
3131
3232 Args:
33- sdat: a :class:`~stagpy.stagyydata. StagyyData` instance.
33+ sdat: a ` StagyyData` instance.
3434 Returns:
3535 dt and time arrays.
3636 """
@@ -46,7 +46,7 @@ def dt_dt(sdat: StagyyData) -> Tseries:
4646 Compute dT/dt as a function of time using an explicit Euler scheme.
4747
4848 Args:
49- sdat: a :class:`~stagpy.stagyydata. StagyyData` instance.
49+ sdat: a ` StagyyData` instance.
5050 Returns:
5151 derivative of temperature and time arrays.
5252 """
@@ -64,7 +64,7 @@ def ebalance(sdat: StagyyData) -> Tseries:
6464 Euler scheme. This should be zero if energy is conserved.
6565
6666 Args:
67- sdat: a :class:`~stagpy.stagyydata. StagyyData` instance.
67+ sdat: a ` StagyyData` instance.
6868 Returns:
6969 energy balance and time arrays.
7070 """
@@ -89,7 +89,7 @@ def mobility(sdat: StagyyData) -> Tseries:
8989 Compute the ratio vsurf / vrms.
9090
9191 Args:
92- sdat: a :class:`~stagpy.stagyydata. StagyyData` instance.
92+ sdat: a ` StagyyData` instance.
9393 Returns:
9494 mobility and time arrays.
9595 """
@@ -107,7 +107,7 @@ def delta_r(step: Step) -> Rprof:
107107 """Compute cell thicknesses.
108108
109109 Args:
110- step: a :class:`~stagpy._step. Step` of a StagyyData instance.
110+ step: a ` Step` of a ` StagyyData` instance.
111111 Returns:
112112 the thickness of the cells and radius.
113113 """
@@ -130,7 +130,7 @@ def diff_prof(step: Step) -> Rprof:
130130 """Compute diffusion flux.
131131
132132 Args:
133- step: a :class:`~stagpy._step. Step` of a StagyyData instance.
133+ step: a ` Step` of a ` StagyyData` instance.
134134 Returns:
135135 the diffusion and radius.
136136 """
@@ -152,7 +152,7 @@ def diffs_prof(step: Step) -> Rprof:
152152 This computation takes sphericity into account if necessary.
153153
154154 Args:
155- step: a :class:`~stagpy._step. Step` of a StagyyData instance.
155+ step: a ` Step` of a ` StagyyData` instance.
156156 Returns:
157157 the diffusion and radius.
158158 """
@@ -167,7 +167,7 @@ def advts_prof(step: Step) -> Rprof:
167167 This computation takes sphericity into account if necessary.
168168
169169 Args:
170- step: a :class:`~stagpy._step. Step` of a StagyyData instance.
170+ step: a ` Step` of a ` StagyyData` instance.
171171 Returns:
172172 the scaled advection and radius.
173173 """
@@ -184,7 +184,7 @@ def advds_prof(step: Step) -> Rprof:
184184 This computation takes sphericity into account if necessary.
185185
186186 Args:
187- step: a :class:`~stagpy._step. Step` of a StagyyData instance.
187+ step: a ` Step` of a ` StagyyData` instance.
188188 Returns:
189189 the scaled downward advection and radius.
190190 """
@@ -201,7 +201,7 @@ def advas_prof(step: Step) -> Rprof:
201201 This computation takes sphericity into account if necessary.
202202
203203 Args:
204- step: a :class:`~stagpy._step. Step` of a StagyyData instance.
204+ step: a ` Step` of a ` StagyyData` instance.
205205 Returns:
206206 the scaled upward advection and radius.
207207 """
@@ -218,7 +218,7 @@ def energy_prof(step: Step) -> Rprof:
218218 This computation takes sphericity into account if necessary.
219219
220220 Args:
221- step: a :class:`~stagpy._step. Step` of a StagyyData instance.
221+ step: a ` Step` of a ` StagyyData` instance.
222222 Returns:
223223 the energy flux and radius.
224224 """
@@ -238,7 +238,7 @@ def advth(step: Step) -> Rprof:
238238 radius.
239239
240240 Args:
241- step: a :class:`~stagpy._step. Step` of a StagyyData instance.
241+ step: a ` Step` of a ` StagyyData` instance.
242242 Returns:
243243 the theoretical advection and radius.
244244 """
@@ -262,7 +262,7 @@ def init_c_overturn(step: Step) -> Rprof:
262262 crystallization of a SMO is assumed.
263263
264264 Args:
265- step: a :class:`~stagpy._step. Step` of a StagyyData instance.
265+ step: a ` Step` of a ` StagyyData` instance.
266266 Returns:
267267 the composition and radius.
268268 """
@@ -298,7 +298,7 @@ def c_overturned(step: Step) -> Rprof:
298298 overturn happens.
299299
300300 Args:
301- step: a :class:`~stagpy._step. Step` of a StagyyData instance.
301+ step: a ` Step` of a ` StagyyData` instance.
302302 Returns:
303303 the composition and radius.
304304 """
@@ -314,7 +314,7 @@ def stream_function(step: Step) -> Field:
314314 """Compute the stream function in 2D geometry.
315315
316316 Args:
317- step: a :class:`~stagpy._step. Step` of a StagyyData instance.
317+ step: a ` Step` of a ` StagyyData` instance.
318318 Returns:
319319 the stream function field.
320320 """
0 commit comments