2015-07-10 06:01:56 -07:00
|
|
|
/**
|
|
|
|
* @file test_speed_density.cpp
|
|
|
|
*
|
|
|
|
* @date Jun 26, 2014
|
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2014
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
#include "engine_test_helper.h"
|
|
|
|
#include "speed_density.h"
|
|
|
|
#include "test_speed_density.h"
|
|
|
|
|
|
|
|
void testSpeedDensity(void) {
|
|
|
|
printf("*************************************************** testSpeedDensity\r\n");
|
|
|
|
EngineTestHelper eth(FORD_INLINE_6_1995);
|
|
|
|
EXPAND_EngineTestHelper;
|
|
|
|
|
|
|
|
eth.ec->trigger.customTotalToothCount = 8;
|
|
|
|
eth.initTriggerShapeAndRpmCalculator();
|
|
|
|
|
2016-01-24 22:02:55 -08:00
|
|
|
eth.fireTriggerEvents(36);
|
2016-01-18 09:03:32 -08:00
|
|
|
assertEqualsM("RPM", 1500, eth.engine.rpmCalculator.getRpm(PASS_ENGINE_PARAMETER_F));
|
2015-07-10 06:01:56 -07:00
|
|
|
|
|
|
|
// 427 cubic inches, that's a LOT of engine
|
|
|
|
eth.ec->specs.displacement = 6.99728;
|
|
|
|
eth.ec->specs.cylindersCount = 8;
|
|
|
|
|
|
|
|
eth.ec->injector.flow = gramm_second_to_cc_minute(5.303);
|
|
|
|
|
2015-12-02 17:10:06 -08:00
|
|
|
float airMass = getAirMass(eth.ec, 0.92, 98, 293.16);
|
|
|
|
|
|
|
|
assertEquals(0.9371, airMass);
|
|
|
|
|
2015-07-10 06:01:56 -07:00
|
|
|
// 0.01414 sec or 14.14 ms
|
2015-12-02 17:10:06 -08:00
|
|
|
assertEquals(0.01414, sdMath(eth.ec, airMass, 12.5));
|
2015-07-10 06:01:56 -07:00
|
|
|
}
|