-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsal_geom.m
More file actions
26 lines (24 loc) · 964 Bytes
/
sal_geom.m
File metadata and controls
26 lines (24 loc) · 964 Bytes
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
function geom = sal_geom()
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% sal_geom - define engine-specific geometrical constants %
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% sal_geom - version 0.9 - Jacob E. McKenzie - mofified: 01/02/14
%
% outputs:
% - geom.offset [cad]: offset of ca = 0 from true BDC (encoder offset)
% - geom.bore [m] : cylinder bore
% - geom.stroke [m] : stroke
% - geom.rod [m] : connecting rod length
% - geom.rc [1] : compression ratio
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% constants for GM LNF
geom.bore = 0.086;
geom.stroke = 0.086;
geom.rod = 0.1455;
geom.rc = 9.2;
geom.offset = 0.0;
end