Outputs *all* the components of the field *e*, (electric) to an HDF5 file. That is, the different components are stored as different datasets within the *same* file.
(sim)
| 5788 | |
| 5789 | |
| 5790 | def output_efield(sim): |
| 5791 | """ |
| 5792 | Outputs *all* the components of the field *e*, (electric) to an HDF5 file. That is, |
| 5793 | the different components are stored as different datasets within the *same* file. |
| 5794 | """ |
| 5795 | sim.output_components("e", mp.Ex, mp.Ey, mp.Ez, mp.Er, mp.Ep) |
| 5796 | |
| 5797 | |
| 5798 | def output_efield_x(sim): |
nothing calls this directly
no test coverage detected