EPAVersion: 2019-02-06

2016 Mazda 2.5L Skyactiv Turbo Engine Tier 2 Fuel - ALPHA Generation Process

This document summarizes the process which utilizes EPA's laboratory engine and chassis dynamometer test data to generate a full engine fuel consumption map for the Mazda Skyactiv turbocharged 2.5L engine from the 2016 Mazda CX-9 tested on Tier 2 fuel. The generated full engine map defines the complete operating boundaries of the engine which are needed for ALPHA modeling including idle, WOT, minimum torque, and maximum speed.

SUGGESTED CITATION:
2016 Mazda 2.5L Turbo Skyactiv-G Engine Tier 2 Fuel - ALPHA Map Package. Version 2019-02. Ann Arbor MI: US EPA National Vehicle and Fuel Emissions Laboratory, National Center for Advanced Technology, 2019.

Engine Physical Characteristics

Set physical characteristics based on published information:

engine = [];
engine.name = '2016 Mazda 2.5L Turbo Skyactiv-G Engine Tier 2 Fuel';
engine.combustion_type = enum_engine_combustion_type.spark_ignition;
engine.displacement_L = 2.488;
engine.num_cylinders = 4;
engine.compression_ratio = 10.5;
enigne.bore_mm = 89;
% engine.stroke_mm = 100;

Test Data

Import EPA engine dynamameter test data from "2016 Mazda 2.5L Skyactiv Turbo Engine Tier 2 Fuel - Test Data Package. Version 2019-02. Ann Arbor, MI: US EPA, National Vehicle and Fuel Emissions Laboratory, National Center for Advanced Technology, 2019."

test_data = readtable2('4- 2016 Mazda 2.5L Turbo Skyactiv-G Engine Tier 2 Fuel - Test Data.xlsx','Sheet','Steady State','VariableNamesLine',4,'VariableUnitsLine',5,'DataLine',6);
ss_test_data.name = 'SS Test Data';
ss_test_data.speed_rpm = test_data.Speed;
ss_test_data.torque_Nm = test_data.Torque;
ss_test_data.fuel_gps = test_data.FuelMeterFlow;
ss_test_data.manifold_press_kPaA = test_data.IntakeManifoldPress;

test_data = readtable2('4- 2016 Mazda 2.5L Turbo Skyactiv-G Engine Tier 2 Fuel - Test Data.xlsx','Sheet','High Load Initial','VariableNamesLine',4,'VariableUnitsLine',5,'DataLine',6);
hl_test_data.name = 'High Load Test Data';
hl_test_data.speed_rpm = test_data.Speed;
hl_test_data.torque_Nm = test_data.Torque;
hl_test_data.fuel_gps = test_data.InjectorFuelFlow;
hl_test_data.manifold_press_kPaA = test_data.IntakeManifoldPress;

test_data = readtable2('4- 2016 Mazda 2.5L Turbo Skyactiv-G Engine Tier 2 Fuel - Test Data.xlsx','Sheet','Steady State with Transmission','VariableNamesLine',4,'VariableUnitsLine',5,'DataLine',6);
ls_test_data.name = 'Low Speed Test Data';
ls_test_data.speed_rpm = test_data.Speed;
ls_test_data.torque_Nm = test_data.Torque;
ls_test_data.fuel_gps = test_data.FuelMeterFlow;
ls_test_data.manifold_press_kPaA = test_data.IntakeManifoldPress;

Maximum Torque (WOT) Curve Data

Maximum torque data is included in the Engine Test Data package referenced above; add maximum power data from: Okita, R., "Mazda SKYACTIV-G Enginewith New Boosting Technology," ACC Symposium 9/28/2016, 2016.

wot_data.speed_rpm = [	1000,	1250,	1500,	3500,	4000,	4500,	5000,	5400];
wot_data.torque_Nm = [	250,	350,	400,	404,	391,	375,	356,	308];

Minimum Torque (Zero Accelerator Pedal) Curve Data

Minimum torque data is included in the Engine Test Data package referenced above.

Fuel Properties

Load fuel properties provided in the Fuel Analysis Report identified in the Engine Test Data package referenced above.

engine.fuel = class_REVS_fuel('FTAG 26864');
disp(engine.fuel)
  class_REVS_fuel with properties:

                        id: 'FTAG 26864'
               description: 'Tier 2 Cert'
          density_kgpL_15C: 0.74246
      energy_density_MJpkg: 42.908
    carbon_weight_fraction: 0.8663
    research_octane_number: 97.6
       motor_octane_number: 89
           alcohol_pct_vol: 0
                  gCO2pgal: 8921.4
    energy_density_BTUplbm: 18447
          specific_gravity: 0.74317

Idle Speed

Set estimated idle speed using preliminary EPA chassis dynamometer test data for the 2017 Mazda CX-9; EPA published report pending.

engine.idle_speed_radps =  545 * convert.rpm2radps ;

Build Fuel Map

Construct simulation input for the engine, combining all of the above inputs. Fit the fueling data onto a grid for simple interpolation and establish points that represent the maximum and minimum engine torque versus speed. Confirm the quality of fit between the input data and the resulting engine description by examining the resulting plots.

engine = REVS_build_engine(engine, {ss_test_data, hl_test_data, ls_test_data}, 'WOT',wot_data,'plot_bsfc','plot_efficiency');

Idle Fuel Verification

Confirm appropriate fuel consumption near idle conditions. The following conditions represent idle observed during chassis testing, with engine torque estimated from CAN data and estimates of accessory load. The speeds and fuel flow agree with measurements recorded on this engine. However, in general, idle speeds and fueling depend on the drivetrain the engine is coupled to and may change depending on the application.

% Idle @ 555 RPM in drive measured fuel rate ~0.148 g/sec
engine.interp_fuel_gps( 545 * convert.rpm2radps, 4.3);
      0.14902

Fuel Map Linearity

Confirm expected trends in output fuel map, specifically in regions where data is unavailable.

REVS_plot_engine_fuel_linearity(engine);

Model Calibration Options

Calibrate additional properties of the REVS engine model which can be set to match observed behaviors during the validation process.

Note: Default values are used unless properties are specified below, which are derived from the composite set of EPA testing and model validation activities.

Accelerator Pedal Map

Apply default pedal mapping for passenger cars, which will linearly increase engine power with accelerator pedal position.

engine.pedal_map_type = enum_engine_pedal_map_type.max_engine_power;

Transient Fueling Adjustments

Utilize the default adjustment factors during the simulation, since there is no transient fueling data available.

File Description

Generate and write the created REVS engine definition into a file for later simulation.

write_REVS_engine( 'engine_2016_Mazda_Skyactiv_Turbo_2L5_Tier2.m', engine);

Engine Build: engine_2016_Mazda_Skyactiv_Turbo_2L5_Tier2.m


% ALPHA ENGINE DEFINITION
% Generated 06-Feb-2019 15:40:51

% Constructor
engine = class_REVS_engine();
engine.name =  '2016 Mazda 2.5L Turbo Skyactiv-G Engine Tier 2 Fuel'; 
engine.source_filename = mfilename;engine.matrix_vintage = enum_matrix_vintage.present;

% Physical Description
engine.displacement_L =  2.488; 
engine.num_cylinders =  4; 
engine.combustion_type = enum_engine_combustion_type.spark_ignition;
engine.compression_ratio =  10.5; 

% Maximum Torque Curve
engine.full_throttle_speed_radps = [	    0.00000000000000000	;     102.73007977238623	;     130.89969389957471	;     157.20517738591153	;     183.37577660702124	;     209.59980751810605	;     235.81431413056538	;     418.87902047863906	;     523.59877559829886	;     549.77871437821386	;     575.95865315812875		]; 
engine.full_throttle_torque_Nm = [	    0.00000000000000000	;     195.83900000000000	;     350.00000000000000	;     403.40056818181819	;     434.52580645161271	;     432.79776536312829	;     441.64175257731904	;     391.00000000000000	;     356.00000000000000	;     305.14285714285717	;    0.00000000000000000		]; 
engine.naturally_aspirated_speed_radps = [	    0.00000000000000000	;     135.09662111236028	;     157.17662022004083	;     183.36243364702915	;     288.08704458643950	;     392.83755092721458	;     575.95865315812875		]; 
engine.naturally_aspirated_torque_Nm = [	     155.68925701386686	;     153.70624839791870	;     170.03952386827643	;     174.50850992551077	;     170.31213679109578	;     157.52409410974960	;     143.09794558726733		]; 

% Minimum Torque Curve
engine.closed_throttle_speed_radps = [	    0.00000000000000000	;     102.73007977238623	;     366.62386267392884	;     523.70349535341848	;     575.95865315812875		]; 
engine.closed_throttle_torque_Nm = [	    -20.500287313432832	;    -24.855000000000000	;    -33.000000000000000	;    -42.700000000000003	;    -44.915088308457712		]; 

% Fuel Map
engine.fuel_map_speed_radps = [	    0.00000000000000000	;     36.462109735726543	;     72.924219471453085	;     80.477131809458527	;     85.974918953240675	;     105.61717906760384	;     135.09662111236028	;     157.17662022004083	;     183.36243364702915	;     209.54761301430540	;     235.71933488390283	;     261.91335693615827	;     288.08704458643950	;     314.26824365002466	;     340.46134420314922	;     366.65444475627379	;     392.83755092721458	;     419.02065709815537	;     445.19434877775166	;     471.36804045734789	;     497.53576790538318	;     523.70349535341848	;     549.83107425577361	;     575.95865315812875		]; 
engine.fuel_map_torque_Nm = [	    -47.160842723880599	;    -30.113678571428572	;    -4.3140000000000001	;     9.0036515151515140	;     27.497091836734690	;     39.228833333333334	;     60.829825000000000	;     90.161483333333337	;     110.94227272727272	;     126.44800000000001	;     136.05000000000001	;     158.96341666666666	;     174.88079295935484	;     190.79816925204304	;     206.61061572459289	;     222.42306219714277	;     243.72949607843137	;     257.13510052809056	;     280.65841623617052	;     296.14482177270696	;     311.63122730924340	;     323.98596491228108	;     344.71489121727194	;     369.11808961814540	;     393.52128801901881	;     417.71199067321282	;     434.45774472718256	;     463.72384020618500		]; 
engine.fuel_map_gps = [
   0.10009878695451595	 0.0058429739264228382	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	;
  0.092944270801302506	  0.052179848060085264	 0.0082126882691073311	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	   0.00000000000000000	 0.0079280121970959523	  0.020032135853333310	  0.038599709631878781	  0.065852550800380993	   0.11237229161886694	   0.16648793953207588	   0.22543789569520339	   0.28597434711975223	   0.35429553839841504	   0.42432483956479200	   0.49416570601372634	   0.56360808185875244	;
  0.077919551367631665	   0.11013804201819388	   0.14394763067174510	   0.14921703930942498	   0.15310341702500735	   0.16749123992252399	   0.20245984285903740	   0.24016928873870638	   0.27148453065165645	   0.31204534594400285	   0.36425911900962377	   0.43330878215726698	   0.49236400919279866	   0.52765937992429068	   0.57191319406245900	   0.64198756679143076	   0.73706097288536987	   0.85075550181916049	   0.95034947148914584	    1.0612597014644349	    1.1544865529672408	    1.2591108835844926	    1.3413041626763496	    1.4266053956660565	;
  0.067406866109485680	   0.12856877810529069	   0.18384611969598830	   0.19659488252477700	   0.20585518326389002	   0.23874224741272801	   0.29670849390941900	   0.34706885467467424	   0.40044855071923424	   0.46143800902540205	   0.52891386940294538	   0.60365100521575821	   0.68038970353438000	   0.74734255804627736	   0.81976744608961483	   0.91143208629945993	    1.0224311965626505	    1.1448461706907489	    1.2626475487704034	    1.3802560975959093	    1.5060545745329919	    1.6247922152866003	    1.7471822674895385	    1.8630413569915836	;
  0.049406105710912251	   0.15181720822043188	   0.24789998411021949	   0.26689961655123345	   0.28073267927441353	   0.33078123779355995	   0.41551230724840366	   0.48354764299411995	   0.56363385234156516	   0.65054978335594582	   0.74136304777493278	   0.82953845253605951	   0.92306244384394098	    1.0282620395173117	    1.1450901787533698	    1.2662458924290607	    1.3972417507174939	    1.5308067050867202	    1.6729191405805406	    1.8162222915499893	    1.9809487424424945	    2.1443213653965358	    2.3011599396013827	    2.4552642043435671	;
  0.036580013335254437	   0.16567071257207636	   0.28904142391165905	   0.31298403242549555	   0.33044426081225070	   0.39355238107585816	   0.49366699393323826	   0.57325278286887360	   0.67160452622225331	   0.77717334020084050	   0.88239066013644529	   0.98596627774778955	    1.0966064446916426	    1.2204592733969184	    1.3564613264190823	    1.4943294259661963	    1.6394752051623767	    1.7855193199043151	    1.9433167392234099	    2.1072489072499088	    2.2882131858550538	    2.4713947318053648	    2.6489055068592515	    2.8238307653836143	;
  0.012468129039078700	   0.18965819787273461	   0.36256106487977219	   0.39758525413605733	   0.42302511554909095	   0.51313728379610468	   0.64337385261829183	   0.74517389340590334	   0.87880707500077360	    1.0177732125472501	    1.1599096813993708	    1.3006654062595138	    1.4456675236058076	    1.6020659673345978	    1.7648985925853413	    1.9326642745236546	    2.1042760151836384	    2.2820104135850494	    2.4661716962180567	    2.6628606823570982	    2.8667127170021751	    3.0767171019132329	    3.2844639402742821	    3.4907205149944120	;
 0.0035969021132774086	   0.23762863373742232	   0.47212923729366074	   0.52048018594408618	   0.55565393732766510	   0.68096119952940626	   0.86576044541595132	    1.0065798103519281	    1.1737776582048716	    1.3478113087072305	    1.5354343223904503	    1.7282303127569869	    1.9269803752356089	    2.1305983118858536	    2.3248588058603512	    2.5265617969117535	    2.7325700984310908	    2.9491392866230957	    3.1598324085682861	    3.3896136950582418	    3.6412603353484077	    3.9070744659751555	    4.1544411343697494	    4.4007816097254633	;
  0.044319762635697625	   0.30410667327725127	   0.56775994340619884	   0.62302714042494944	   0.66328896308776386	   0.80735723401337001	    1.0203699905449075	    1.1778680432728217	    1.3709819350549002	    1.5585310100208360	    1.7685180556731757	    1.9896568294722081	    2.2137096276265558	    2.4473719445797215	    2.6711163715318942	    2.8947046387191571	    3.1289311252237537	    3.3719671117359900	    3.6204766198322371	    3.8813629748344662	    4.1775669484665894	    4.4809543917465025	    4.7895733440009627	    5.0966084072350757	;
   0.10137753741901871	   0.37425649794629684	   0.65075090200857855	   0.70913329013154325	   0.75171742792271978	   0.90508823791818871	    1.1407442907042822	    1.3089874169684559	    1.5113347840944495	    1.7154713838412903	    1.9399739640549150	    2.1779362262638484	    2.4230689701457786	    2.6832217126759983	    2.9284801892027708	    3.1722147429814362	    3.4308398338238728	    3.7009652593959816	    3.9840045715317394	    4.2897024716929790	    4.6129928513811436	    4.9540581967826727	    5.3018773216147954	    5.6508309168633639	;
   0.14606665934457752	   0.42543070183613724	   0.70798937463058353	   0.76734060048636776	   0.81060929383465985	   0.96632942061384308	    1.2140397395662845	    1.3940658574524027	    1.5999114874455620	    1.8147636360853929	    2.0513442141223885	    2.3014679189204461	    2.5606050760408690	    2.8312723889229647	    3.0913207286853273	    3.3505819349119728	    3.6257085372664948	    3.9130773916689887	    4.2159452800416215	    4.5404248252439867	    4.8919615035346657	    5.2618858051485864	    5.6340413940994507	    6.0083458020289067	;
   0.29285141134517101	   0.58073406216271406	   0.87257643834030096	   0.93315977434263764	   0.97728543122763523	    1.1358728850852624	    1.3984844851566622	    1.5962623508300846	    1.8245686609522889	    2.0787612391365520	    2.3505700648635814	    2.6296353750503059	    2.9165008371262537	    3.2091010530873820	    3.5002811259819153	    3.8054390335161146	    4.1328516632090180	    4.4667071833039813	    4.8127391436043405	    5.1710394558713419	    5.6020455850127711	    6.0465059713225529	    6.4904846651235770	    6.9274283842471718	;
   0.43911191159142332	   0.72416911960371377	    1.0217216701697338	    1.0858534024322091	    1.1327173078211481	    1.3027169219748544	    1.5728741607003898	    1.7773932035469515	    2.0208165775799820	    2.2863263012604733	    2.5739850999998466	    2.8717186201110358	    3.1749851453799098	    3.4928407486154653	    3.8049849489770478	    4.1437157309594692	    4.5361474472194550	    4.9423554129016782	    5.3090476467615728	    5.7051775276919123	    6.1709417116871403	    6.6753195247720702	    7.1616324536352280	    7.6469727112486154	;
   0.61617871235244126	   0.89442926588039851	    1.1919192219851336	    1.2575029085444496	    1.3055163048514460	    1.4807036579862487	    1.7597391294678988	    1.9670675998209852	    2.2257686780080674	    2.5092568324370008	    2.8050114192593476	    3.1100160673299690	    3.4380586122621510	    3.7805581601738063	    4.1309964918821036	    4.5120038930653488	    4.9556514502021081	    5.4074721552881986	    5.8162409176783010	    6.2426406743926366	    6.7582719376636708	    7.3217178466662869	    7.8753595526371782	    8.4356171983459891	;
   0.82015263391986337	    1.0907669793411474	    1.3789331459984564	    1.4424235514669814	    1.4889044762498143	    1.6585869570366396	    1.9329264698599051	    2.1507505393345601	    2.4255207428534287	    2.7283390987459843	    3.0433737957599996	    3.3734840327214006	    3.7270338550096680	    4.0995940559428412	    4.4883369239729305	    4.9023314106759157	    5.3834277835473339	    5.8652285116102743	    6.3162657913035396	    6.7982760030929024	    7.3534220296560164	    7.9769937259333252	    8.6334566176673651	    9.3026567186302618	;
    1.0446287755572932	    1.3111380099627956	    1.5841023818744786	    1.6429692243481291	    1.6860070398003364	    1.8427393363943105	    2.1053286415384069	    2.3316400162561424	    2.6273622765506688	    2.9477866554830290	    3.2840210814909114	    3.6535956054166387	    4.0451903448109574	    4.4532586680718973	    4.8817084284922352	    5.3323436604129819	    5.8133838586539603	    6.3252347439268801	    6.7868740404174250	    7.3357659405141629	    7.9693307244262268	    8.6937647025297800	    9.4695006928882890	    10.261297936764578	;
    1.3628248063517823	    1.6396635922720553	    1.8996935119957346	    1.9513574246790208	    1.9888476575244647	    2.1219252880514836	    2.3405456905517483	    2.5674212659274041	    2.8969090114434191	    3.2631677746549363	    3.6505244075610741	    4.0655803809720954	    4.5046012857272588	    4.9562650666026924	    5.4228026161792817	    5.8961029684947830	    6.3154370093568435	    6.7896557623119849	    7.3544329919785607	    8.0538529907107819	    8.9096789389192708	    9.8390573604317435	    10.779412996954925	    11.715218645551793	;
    1.5527737325865221	    1.8475770831021294	    2.1182139239037645	    2.1699223145509192	    2.2072864764083979	    2.3376429958394049	    2.5366378261324161	    2.7349787421016920	    3.0750946250935085	    3.4694218166951525	    3.9028858296730462	    4.3481018910279969	    4.8016107366412131	    5.2578224387461718	    5.7193170372542035	    6.1871355848002008	    6.6395675273997732	    7.1521107973545446	    7.8607097740059215	    8.6621933572449024	    9.6764224749290335	    10.704376884726754	    11.705269242680131	    12.691256883779579	;
    1.8497412954595915	    2.1925798547905058	    2.5224778609912759	    2.5860918923600424	    2.6320375814010251	    2.7909895058618255	    2.9957752183175081	    3.1345576972602553	    3.4558202986105764	    3.8734118963685917	    4.3768694797221031	    4.8658934946148040	    5.3269312090188006	    5.7377038535128735	    6.1801174838569368	    6.7318484875831057	    7.4126236244837163	    8.2429744008484622	    9.3158917848043430	    10.420381074278557	    11.474952309195073	    12.492058903053744	    13.495750369565478	    14.498485512978805	;
    2.0121257383093942	    2.3819571932491237	    2.7576602117392737	    2.8351161846047264	    2.8914001234982418	    3.0900932552269058	    3.3468171737483359	    3.4986927426294048	    3.8340682775761068	    4.2303718871914624	    4.7304462234802802	    5.1990603691384862	    5.6418968468279864	    6.0489744004203096	    6.5258848723935401	    7.2053558303796832	    8.1794177936284349	    9.3320895169622080	    10.532704118049837	    11.729103284521074	    12.738830255368892	    13.733073365216152	    14.740091595562010	    15.755901841067500	;
    2.1541139389777380	    2.5468457534848223	    2.9559014301316302	    3.0453174550773610	    3.1107501002964311	    3.3489754864084524	    3.7065738936014494	    3.8392271099057829	    4.0882451272658207	    4.5055637339184003	    5.0696052100899731	    5.5268135118374859	    5.9773282648263830	    6.4149180731124256	    6.9870508584701776	    7.8003867015013766	    9.0867089568483710	    10.505431842754103	    11.721822166664984	    12.871544043614620	    13.935100391169479	    14.972430135694182	    16.011600679145666	    17.056090589984368	;
    2.2536322778693774	    2.6647694717563457	    3.0887567482820248	    3.1798148123800241	    3.2462814906577173	    3.4853203152978103	    3.8185771822885100	    3.9821798691531942	    4.2124889668596142	    4.6396501274802366	    5.2328445739941909	    5.7958616053671346	    6.3074471566516825	    6.7676066601319089	    7.5102852200678099	    8.5120435331620588	    9.8952287557821013	    11.353565075483495	    12.606255568848219	    13.745735075078008	    14.859181635712138	    15.953883478298835	    17.036323408103442	    18.115778936978373	;
    2.3820201529414566	    2.8257244764350276	    3.2486079786093049	    3.3296447082484617	    3.3881314610992539	    3.5898493618252445	    3.8467462289189069	    4.0320363325010042	    4.3285162753332100	    4.8627459302349161	    5.5641119538146313	    6.4116278609072035	    7.1051941024464789	    7.7605785049448786	    8.7692175274041997	    10.024730007750064	    11.413710780980516	    12.789081579870942	    14.034053070514856	    15.171147016286593	    16.396584085912217	    17.602628715806333	    18.774662335029060	    19.931152226972507	;
    2.4125948373311146	    2.8986899843719676	    3.3433414862706532	    3.4268592173086465	    3.4870613817748288	    3.6944180705076817	    3.9764273704478850	    4.2124577307309261	    4.5944768059887071	    5.2206822274775337	    6.1333567270789233	    7.2528236823151611	    8.3122378929205887	    9.3541237348881072	    10.521437270496975	    11.865538016898148	    13.280555757876435	    14.703945602029910	    15.973259057591250	    17.177474643585633	    18.389062256388659	    19.621113988557411	    20.861840573409804	    22.104864448367366	;
    2.2838037598837264	    2.8542610580209735	    3.4114769741263138	    3.5257425199152421	    3.6088569036623883	    3.9052679807301311	    4.3540996436502013	    4.7007162629565311	    5.1231023669056510	    5.8107404786367267	    6.9473160046806797	    8.2873803608468819	    9.6116069732093301	    10.733048042587072	    11.835647958908750	    13.094665209841056	    14.684999921347673	    16.372566437187420	    17.752933422766645	    19.048273084456369	    20.344152319168625	    21.663628019236572	    23.001059146560685	    24.347284330203092	;
    2.0426020110867538	    2.7590205594950614	    3.4878142032873076	    3.6424206533614458	    3.7552386129359725	    4.1624648039857091	    4.8050733130030912	    5.3107884215342205	    5.9113255838420686	    6.7106640484824611	    7.7403434905171329	    8.9635209268587186	    10.215295103174066	    11.695089948563446	    12.837015485332337	    14.015444971107351	    15.628311625893204	    17.349723373658719	    19.009904718115255	    20.591983689122216	    22.125052965469386	    23.637830651139726	    25.143834335341438	    26.650350704470444	;
    1.8503444909527325	    2.6911913601126880	    3.5502141344854463	    3.7317868049914638	    3.8642222563254909	    4.3413639086761409	    5.0910999321801995	    5.6990910073722043	    6.4873776988610832	    7.3473264504962765	    8.0931970273092499	    9.1885395138945007	    10.593763152578948	    12.088648054798446	    13.445353690468252	    14.831594771524758	    16.394416178960267	    18.097378280036207	    19.852628083273604	    21.592044281743139	    23.293257378737344	    24.964287382015623	    26.617513629720964	    28.266217266082894	;
    1.4915180261423220	    2.5781951676476953	    3.6767694710798868	    3.9059100761004153	    4.0728030231807191	    4.6703163544289499	    5.5704729156559702	    6.2407840581510499	    7.0285001169111530	    7.8222132153346369	    8.7005827950966292	    9.8323731410112671	    11.188197896022835	    12.706308769351432	    14.333429521170903	    16.024837496207503	    17.760078638485162	    19.552348707251216	    21.409813790973541	    23.321412040041899	    25.263332271986876	    27.215208654538529	    29.163150868744438	    31.108571382822966	]; 

% Fuel Properties
engine.fuel = class_REVS_fuel('FTAG 26864');

% Idle Speed
engine.idle_speed_radps = class_REVS_dynamic_lookup;
engine.idle_speed_radps.axis_1.signal =  'veh_spd_mps'; 
engine.idle_speed_radps.axis_1.breakpoints = [	    0.00000000000000000	    10.000000000000000		]; 
engine.idle_speed_radps.table = [	     57.072266540214571	;     57.072266540214571		]; 

% Pedal Calibration
engine.pedal_map_type = enum_engine_pedal_map_type.max_engine_power;

% Calibration Adjustment Factors
% -- None --