-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCircut3_values.m
75 lines (38 loc) · 1.29 KB
/
Circut3_values.m
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
% Constant pressure pump
tau_pump = 500e-3; % pump time constant
pref = 170e5; % pump reference pressure
Kp = 1e-9; % pump flow pressure constant
Be_p= 1300e6; % effective bulk modulus of pump line
V_p = 3e-3; % pump line volume
pt = 1e5; % tank pressure
% Hydraulic Valve
tau_valve = 1.59e-2;
C_v_valve = 1.16e-8;
U_db = 2;
rho=860; %oil density
% A, B and 1 lines
BeA = 1300e6; % effective bulk modulus for the line A
VA = 3e-3/2; % volume of the line A
pA0 = 73e5; % initial pressure value for pA
BeB = 1300e6; % effective bulk modulus for the line B
VB = 3e-3; % volume of the line B
pB0 = 7e5; % initial pressure value for pB
Be1 = 1300e6; % effective bulk modulus for the line 1
V1 = 3e-3/2; % volume of the line 1
p10= 73e5; % initial pressure value for p1
% One-way restrictor valve
C_o = (1/60000)/sqrt(5e5); %lowering the load
C_cv = (70/60000)/sqrt(5e5); %lifting the load, check valve
p0 = 2e5; %check valves spring preload pressure
% Hydraulic motor
Jm= 3.6e-3; %motor inertia
Vm = 250e-6; %motor revolution volume
nm= 0.93; %motor mechanical efficiency
% Load & Winch
ml = 500; %load mass
rw = 100e-3/2; %drum radii
mw = 100; %winch mass
% Simulation
SIMTIME = 15;
step = 1e-5;
g = 9.81;