| Home | Trees | Indices | Help |
|
|---|
|
|
| Classes | |
| TimeOutError | |
| Functions | |||
NewSimulationData
|
|
||
NewSimulationData
|
|
||
NewSimulationData
|
|
||
| None |
|
||
| None |
|
||
|
|||
| Variables | |
ENGINES =
|
|
FDTD =
|
|
FEM =
|
|
| Function Details |
sets termination criterira on simulation on active project
|
Setups simulation on active project for S parameter simulation
|
Setups simulation on active project for S parameter simulation
|
wait(Simulation) -> None wait([Simulation, ...]) -> None This function blocks execution as long as there are simulations that are Running or Queued. It will not wait for simulations in any other state like Created, Ready, Completed, killed or Error. When called without arguments, it will check all simulations in the active project. When called with a single simulation or a list, it will only wait for those specific simulations.
|
wait(L{Simulation}) -> None
wait([L{Simulation}, ...]) -> None
This function blocks execution as long as there are simulations that are
Running or Queued. It will not wait for simulations in any other state like
Created, Ready, Completed, killed or Error. When called without arguments,
it will check all simulations in the active project. When called with a
single simulation or a list, it will only wait for those specific
simulations.
When the simulation time exceeds the completion time then an error is raised.
timedWait is deprecated, and will be removed in the 2021 release. Use wait(simulations, completionTimeSeconds) instead.
|
create multiple simulations to perform a parameter sweep, even in FEM mode.
paramSweeps is a dictionary containing the parameters to be swept
The keys are the parameter sweeps, the values are either single values (numbers
or expressions), or a sequence of values. In the latter case, one simulation
per item in the sequence will be made. If multiple parameters must be swept,
the product space will be used. For example:
simulateParameterSweep(A=[1, 2], B=3, C=["4 mm", "5 mm"])
The following simulations will be created:
A = 1, B = 3, C = "4 mm"
A = 1, B = 3, C = "5 mm"
A = 2, B = 3, C = "4 mm"
A = 2, B = 3, C = "5 mm"
Optional arguments:
- addToQueue: if True, the created simulations are added to the run queue
- simName: the simulation name to be used.
|
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Wed Jun 26 10:16:15 2019 | http://epydoc.sourceforge.net |