-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDEFAULT.m
More file actions
100 lines (77 loc) · 2.18 KB
/
Copy pathDEFAULT.m
File metadata and controls
100 lines (77 loc) · 2.18 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
% This script sets default values for the SLS 3-D Printer
% All forward paths are set to 1
% All feedback paths are set to 0
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Values you should over-write in Control.m %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ================
% CONTROLLER GAINS
% ================
% PID Controller
PID0 = [1 0 0];
PID1 = [1 0 0];
% Controller Feedback Gain
FB0 = 0;
FB1 = 0;
% Assign the Set-Point Trajectory & Time Vector
TRAJECTORY
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Values you should over-write in System.m %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ==========================
% Choose Motors
% ==========================
AMAX22_5W_SB; % Default Maxon motor
Q0 = MotorParam;
Q1 = MotorParam;
% ==========================
% Motor Parameters
% ==========================
NomI0 = 1; % Max average current
StallI0 = 1; % Max peak current
NomI1 = 1; % Max average current
StallI1 = 1; % Max peak current
% ==========================
% Q0 - Rotation about y-axis
% ==========================
% Amplifier Dynamics
Amp0n = [1]; % Numerator
Amp0d = [1]; % Denominator
AmpSat0 = Big;
% Electrical Motor Dynamics
Elec0n = [1]; % Numerator
Elec0d = [1]; % Denominator
% Torque Const & Back EMF
TConst0 = 1;
BackEMF0 = 0;
% Mechanical Motor Dynamics
Mech0n = [1]; % Numerator
Mech0d = [1]; % Denominator
JntSat0 = Big;
% Sensor Dynamics
Sens0 = 0;
SensSat0 = Big;
% Static Friction
StFric0 = 0;
% ==========================
% Q1 - Rotation about x-axis
% ==========================
% Amplifier Dynamics
Amp1n = [1]; % Numerator
Amp1d = [1]; % Denominator
AmpSat1 = Big;
% Electrical Motor Dynamics
Elec1n = [1]; % Numerator
Elec1d = [1]; % Denominator
% Torque Const & Back EMF
TConst1 = 1;
BackEMF1 = 0;
% Mechanical Motor Dynamics
Mech1n = [1]; % Numerator
Mech1d = [1]; % Denominator
JntSat1 = Big;
% Sensor Dynamics
Sens1 = 0;
SensSat1 = Big;
% Static Friction
StFric1 = 0;