-
Notifications
You must be signed in to change notification settings - Fork 17
/
IntegratorInput.h
34 lines (26 loc) · 1.06 KB
/
IntegratorInput.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/********************************************************************************
* Copyright (c) 2020 AVL List GmbH and others
*
* This program and the accompanying materials are made available under the
* terms of the Apache Software License 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0.
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/
#ifndef MCX_READER_MODEL_COMPONENTS_SPECIFIC_DATA_INTEGRATOR_INPUT_H
#define MCX_READER_MODEL_COMPONENTS_SPECIFIC_DATA_INTEGRATOR_INPUT_H
#include "reader/model/components/ComponentInput.h"
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
extern const ObjectClass _IntegratorInput;
typedef struct IntegratorInput {
ComponentInput _;
OPTIONAL_VALUE(double) gain;
OPTIONAL_VALUE(int) numSubSteps;
OPTIONAL_VALUE(double) initialState;
} IntegratorInput;
#ifdef __cplusplus
} /* closing brace for extern "C" */
#endif /* __cplusplus */
#endif // MCX_READER_MODEL_COMPONENTS_SPECIFIC_DATA_INTEGRATOR_INPUT_H