@@ -31,6 +31,7 @@ def dtime(sdat: StagyyData) -> Tseries:
3131
3232 Args:
3333 sdat: a `StagyyData` instance.
34+
3435 Returns:
3536 dt and time arrays.
3637 """
@@ -47,6 +48,7 @@ def dt_dt(sdat: StagyyData) -> Tseries:
4748
4849 Args:
4950 sdat: a `StagyyData` instance.
51+
5052 Returns:
5153 derivative of temperature and time arrays.
5254 """
@@ -65,6 +67,7 @@ def ebalance(sdat: StagyyData) -> Tseries:
6567
6668 Args:
6769 sdat: a `StagyyData` instance.
70+
6871 Returns:
6972 energy balance and time arrays.
7073 """
@@ -90,6 +93,7 @@ def mobility(sdat: StagyyData) -> Tseries:
9093
9194 Args:
9295 sdat: a `StagyyData` instance.
96+
9397 Returns:
9498 mobility and time arrays.
9599 """
@@ -108,6 +112,7 @@ def delta_r(step: Step) -> Rprof:
108112
109113 Args:
110114 step: a `Step` of a `StagyyData` instance.
115+
111116 Returns:
112117 the thickness of the cells and radius.
113118 """
@@ -131,6 +136,7 @@ def diff_prof(step: Step) -> Rprof:
131136
132137 Args:
133138 step: a `Step` of a `StagyyData` instance.
139+
134140 Returns:
135141 the diffusion and radius.
136142 """
@@ -153,6 +159,7 @@ def diffs_prof(step: Step) -> Rprof:
153159
154160 Args:
155161 step: a `Step` of a `StagyyData` instance.
162+
156163 Returns:
157164 the diffusion and radius.
158165 """
@@ -168,6 +175,7 @@ def advts_prof(step: Step) -> Rprof:
168175
169176 Args:
170177 step: a `Step` of a `StagyyData` instance.
178+
171179 Returns:
172180 the scaled advection and radius.
173181 """
@@ -185,6 +193,7 @@ def advds_prof(step: Step) -> Rprof:
185193
186194 Args:
187195 step: a `Step` of a `StagyyData` instance.
196+
188197 Returns:
189198 the scaled downward advection and radius.
190199 """
@@ -202,6 +211,7 @@ def advas_prof(step: Step) -> Rprof:
202211
203212 Args:
204213 step: a `Step` of a `StagyyData` instance.
214+
205215 Returns:
206216 the scaled upward advection and radius.
207217 """
@@ -219,6 +229,7 @@ def energy_prof(step: Step) -> Rprof:
219229
220230 Args:
221231 step: a `Step` of a `StagyyData` instance.
232+
222233 Returns:
223234 the energy flux and radius.
224235 """
@@ -239,6 +250,7 @@ def advth(step: Step) -> Rprof:
239250
240251 Args:
241252 step: a `Step` of a `StagyyData` instance.
253+
242254 Returns:
243255 the theoretical advection and radius.
244256 """
@@ -263,6 +275,7 @@ def init_c_overturn(step: Step) -> Rprof:
263275
264276 Args:
265277 step: a `Step` of a `StagyyData` instance.
278+
266279 Returns:
267280 the composition and radius.
268281 """
@@ -299,6 +312,7 @@ def c_overturned(step: Step) -> Rprof:
299312
300313 Args:
301314 step: a `Step` of a `StagyyData` instance.
315+
302316 Returns:
303317 the composition and radius.
304318 """
@@ -315,6 +329,7 @@ def stream_function(step: Step) -> Field:
315329
316330 Args:
317331 step: a `Step` of a `StagyyData` instance.
332+
318333 Returns:
319334 the stream function field.
320335 """
0 commit comments