/** * 3Di API * 3Di simulation API (latest stable version: v3) Framework release: 3.0.1 3Di core release: 2.3.0.dev0 deployed on: 10:42AM (UTC) on October 04, 2022 * * The version of the OpenAPI document: v3 * Contact: info@nelen-schuurmans.nl * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface TimeStepSettings */ export interface TimeStepSettings { /** * * @type {number} * @memberof TimeStepSettings */ readonly id?: number; /** * * @type {number} * @memberof TimeStepSettings */ readonly simulationId?: number; /** * Size of the simulation time step in seconds. * @type {number} * @memberof TimeStepSettings */ timeStep: number; /** * Minimum size of the simulation time step in seconds. Suitable default is 0.001. * @type {number} * @memberof TimeStepSettings */ minTimeStep: number; /** * Only in combination with use_time_step_stretch=True. * @type {number} * @memberof TimeStepSettings */ maxTimeStep?: number | null; /** * Permit the time step to increase automatically, when the flow allows it. * @type {boolean} * @memberof TimeStepSettings */ useTimeStepStretch: boolean; /** * The interval in seconds in which results are saved to disk. * @type {number} * @memberof TimeStepSettings */ outputTimeStep: number; } export declare function TimeStepSettingsFromJSON(json: any): TimeStepSettings; export declare function TimeStepSettingsToJSON(value?: TimeStepSettings): any;