-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpid_automatic_tuning.py
executable file
·48 lines (38 loc) · 1.26 KB
/
pid_automatic_tuning.py
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Copyright (c) 2017 Konstantinos G. Papdopoulos. All rights reserved.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License v1.0 which accompanies this distribution,
# and is available at http://www.eclipse.org/legal/epl-v10.html
class ControllerAutomatic:
"""
Creates a Test run object
"""
def __init__(self, args):
"""
Initializes the appropriate test component objects according to the
test_type and the test configuration json object, in order to prepare
the test for running
:param args:
:param json_conf:
:param test_type:
:type args:
:type json_conf:
:type test_type: str
"""
# CONTROLLER preparation
def autoTuneParamMainTspEstimation(self, args):
pass
def pidAutomaticTuningTypeI(self, args):
"""Creates the controlled process determined by the user input
Plant creation supports poles (max:5), zeros (max:5), time delay
:param poles
:param zeros
:param time_delay
:param user_defined_plant
:
:type
:type
:type
:type
"""
pass