2015-07-10 06:01:56 -07:00
|
|
|
/**
|
|
|
|
* @file speed_density.h
|
|
|
|
*
|
|
|
|
* @date May 29, 2014
|
2020-01-07 21:02:40 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
2015-07-10 06:01:56 -07:00
|
|
|
*/
|
2019-12-23 21:03:53 -08:00
|
|
|
|
|
|
|
#pragma once
|
2015-07-10 06:01:56 -07:00
|
|
|
|
2020-06-06 04:25:19 -07:00
|
|
|
#include "airmass.h"
|
2020-07-22 13:11:07 -07:00
|
|
|
#include "speed_density_base.h"
|
2022-09-03 04:44:24 -07:00
|
|
|
#include "fuel_computer_generated.h"
|
2020-06-03 18:12:12 -07:00
|
|
|
|
2015-07-10 06:01:56 -07:00
|
|
|
#define gramm_second_to_cc_minute(gs) ((gs) / 0.0119997981)
|
|
|
|
#define cc_minute_to_gramm_second(ccm) ((ccm) * 0.0119997981)
|
|
|
|
|
2021-11-16 01:15:29 -08:00
|
|
|
void initSpeedDensity();
|