@@ -347,8 +347,8 @@ def plot_section(self):
347347 self .section .plot ()
348348
349349 def plot_stress_distribution (self , step : "_Step" , end : str = "end_1" , nx : int = 100 , ny : int = 100 , * args , ** kwargs ): # noqa: F821
350- """ Plot the stress distribution along the element.
351-
350+ """Plot the stress distribution along the element.
351+
352352 Parameters
353353 ----------
354354 step : :class:`compas_fea2.model.Step`
@@ -375,41 +375,41 @@ def section_forces_result(self, step: "Step") -> "Result": # noqa: F821
375375 ----------
376376 step : :class:`compas_fea2.model.Step`
377377 The analysis step.
378-
378+
379379 Returns
380380 -------
381381 :class:`compas_fea2.results.Result`
382382 The section forces result for the element.
383383 """
384-
384+
385385 if not hasattr (step , "section_forces_field" ):
386386 raise ValueError ("The step does not have a section_forces_field" )
387387 return step .section_forces_field .get_result_at (self )
388388
389389 def forces (self , step : "Step" ) -> "Result" : # noqa: F821
390390 """Get the forces result for the element.
391-
391+
392392 Parameters
393393 ----------
394394 step : :class:`compas_fea2.model.Step`
395395 The analysis step.
396-
396+
397397 Returns
398398 -------
399399 :class:`compas_fea2.results.Result`
400- The forces result for the element.
400+ The forces result for the element.
401401 """
402402 r = self .section_forces_result (step )
403403 return r .forces
404404
405405 def moments (self , step : "_Step" ) -> "Result" : # noqa: F821
406- """ Get the moments result for the element.
407-
406+ """Get the moments result for the element.
407+
408408 Parameters
409409 ----------
410410 step : :class:`compas_fea2.model.Step`
411411 The analysis step.
412-
412+
413413 Returns
414414 -------
415415 :class:`compas_fea2.results.Result`
@@ -638,12 +638,12 @@ def _construct_faces(self, face_indices: Dict[str, Tuple[int]]) -> List[Face]:
638638
639639 def stress_results (self , step : "_Step" ) -> "Result" : # noqa: F821
640640 """Get the stress results for the element.
641-
641+
642642 Parameters
643643 ----------
644644 step : :class:`compas_fea2.model.Step`
645645 The analysis step.
646-
646+
647647 Returns
648648 -------
649649 :class:`compas_fea2.results.Result`
0 commit comments