Produce a graphical visualization of the geometry and/or fields, as appropriately autodetermined based on the current state of progress.
(self, init_opt=False, **kwargs)
| 558 | return [m.get_evaluation() for m in self.objective_arguments] |
| 559 | |
| 560 | def plot2D(self, init_opt=False, **kwargs) -> None: |
| 561 | """Produce a graphical visualization of the geometry and/or fields, |
| 562 | as appropriately autodetermined based on the current state of |
| 563 | progress. |
| 564 | """ |
| 565 | |
| 566 | if init_opt: |
| 567 | self.prepare_forward_run() |
| 568 | |
| 569 | self.sim.plot2D(**kwargs) |
| 570 | |
| 571 | |
| 572 | def atleast_3d(*arys): |