tidy3d.UnsteadySpec#

class UnsteadySpec[source]#

Bases: Tidy3dBaseModel

Defines an unsteady specification

Parameters:
  • time_step (PositiveFloat) – [units = sec]. Time step taken for each iteration of the time integration loop.

  • total_time_steps (PositiveInt) – Specifies the total number of time steps run during the simulation.

Example

>>> import tidy3d as td
>>> time_spec = td.UnsteadySpec(
...     time_step=0.01,
...     total_time_steps=200,
... )

Attributes

Inherited Common Usage

time_step#
total_time_steps#