1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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
|
-
+
+
+
+
-
+
+
+
+
+
|
%% Label file for system Cart (Cart_lbl.txt)
%SUMMARY Cart
%DESCRIPTION <Detailed description here>
%DESCRIPTION Simple cart model
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% Version control history
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %% $Id$
% %% $Log$
% %% Revision 1.1 2000/12/28 18:00:45 peterg
% %% To RCS
% %%
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Port aliases
%ALIAS
%ALIAS in drive
%ALIAS pendulum|out x,y,a
%UNITS drive translational N m/s
b%UNITS x translational N m/s
%UNITS y translational N m/s
%UNITS a rotational N*m radian/s
% Argument aliases
%ALIAS $1 m_c
%% Each line should be of one of the following forms:
% a comment (ie starting with %)
% component-name cr_name arg1,arg2,..argn
|
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
-
-
+
+
|
% Component type SS
[a] SS external,external
[drive] SS external,external
[x] SS external,external
[y] SS external,external
% Component type Df
v_c SS external
% Component type De
Position SS external
% Component type Sf
zero_velocity SS 0
|