flex_rf.tidy3d.FieldGrid
Type: class │ Base(s): Tidy3dBaseModel
Description
Section titled “Description”Holds the grid data for a single field.
Example(s)
Section titled “Example(s)”x = np.linspace(-1, 1, 10)y = np.linspace(-1, 1, 11)z = np.linspace(-1, 1, 12)coords = Coords(x=x, y=y, z=z)field_grid = FieldGrid(x=coords, y=coords, z=coords)Parameters
Section titled “Parameters”x [Coords] |
|
x,y,z coordinates of the locations of the x-component of a vector field. |
y [Coords] |
|
x,y,z coordinates of the locations of the y-component of a vector field. |
z [Coords] |
|
x,y,z coordinates of the locations of the z-component of a vector field. |