Fluid |
The FluidOptions type exposes the following members.
| Name | Description | |
|---|---|---|
| CycleCount | Maximum number of cycles used to check for ‘semi-equilibrium’ in fluid system. Is only used when Cycle Results = Coupled. | |
| CycleDuration | The time of one cycle (s) when Cycle Results is set to True. | |
| CycleResults | Determines how RF averaged results should be written. True False Coupled. | |
| FluidEMModel | Fluid EM Model - Space Charge, Conductivity, Null. | |
| NumStep | Number of fluid time steps. | |
| OutputFrequency | Output frequency for fluid results. | |
| ReactionRates | Reaction Rates - None, Charge, Chemkin. | |
| TimeStep | Time step size (s). |
| Name | Description | |
|---|---|---|
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) | |
| GetHashCode | Serves as the default hash function. (Inherited from Object) | |
| GetType | Gets the Type of the current instance. (Inherited from Object) | |
| ToString | Returns a string that represents the current object. (Inherited from Object) |
from ema3d.Api.V26.Charging.Domain import ChargeDomain as ChargeDomain from ema3d.Api.V26.Charging.Domain import ChargingEnvironment as ChargingEnvironment from ema3d.Api.V26.Charging.Domain import FluidCycleType, ReactionRatesType, FluidSourceType _cd = ChargeDomain.GetInstance(Window.ActiveWindow.Document) _cd.SwitchChargingOptions.SimulationType = ChargingEnvironment.Custom _cd.FluidOptions.NumStep = 50 _cd.FluidOptions.TimeStep = 0.0001 _cd.FluidOptions.OutputFrequency = 1 _cd.FluidOptions.CycleResults = FluidCycleType.False _cd.FluidOptions.CycleDuration = 7.35E-08 _cd.FluidOptions.CycleCount = 25 _cd.FluidOptions.ReactionRates = ReactionRatesType.None _cd.FluidOptions.FluidEMModel = FluidSourceType.SpaceCharge