Page 1 of 1
Torque approximation, TCU torque integration
Posted: Tue Sep 06, 2022 12:32 am
by AndreyB
Two of my test mules are looking for about a dozen of torque-related CAN fields for happy operation. At the moment I am shopping around for any relevant wisdom.
Re: Torque approximation, TCU torque integration
Posted: Tue Sep 06, 2022 12:35 am
by AndreyB
Leiderman-Khlystov method of torque approximation by RPM came up which seems like a USSR wisdom?
A person not from forum has contributed two implementations but both seem to not produce realistic numbers for my 2.0T Volkswagen engine.
Lua for both methods is hopeffuly self-explanatory
https://github.com/rusefi/rusefi/blob/master/unit_tests/tests/lua/test_lua_Leiderman_Khlystov.cpp
The problem is that both methods produce 2000 RPM torque above max torque from engine inputs. Is that a problem with my implementation or is it that Leiderman-Khlystov is not applicable for GDI forced induction?
Re: Torque approximation, TCU torque integration
Posted: Tue Sep 06, 2022 12:37 am
by mck1117
We already have cylinder airmass. Torque is very nearly linear to cylinder airmass, so you could just configure some value "torque per airmass" in units of Nm per gram.
That is certainly a good enough first order approximation for things like transmission control.
Re: Torque approximation, TCU torque integration
Posted: Tue Sep 06, 2022 12:42 am
by mck1117
the NA version of your engine makes what, 200Nm from 2 liters (~0.6g cylinder airmass max at 100% VE, so ~0.55 with "good" real VE), so that's 363 Nm/gram
Re: Torque approximation, TCU torque integration
Posted: Tue Sep 06, 2022 1:04 am
by stefanst
In first iteration: torque at crank = torque produced - torque losses
With
torque produced being roughly proportional to airmass per cycle
and losses being equal or greater to torque needed to sustain idle
So I would go with a first iteration of (airmass/cycle - airmass/cycle(idle)) * correction factor
The correction factor being determined by manufacturer stated max torque at max torque rpm
Re: Torque approximation, TCU torque integration
Posted: Tue Sep 06, 2022 1:35 am
by AndreyB
Re: Torque approximation, TCU torque integration
Posted: Sat Sep 17, 2022 12:28 pm
by AndreyB
stefanst wrote: ↑Tue Sep 06, 2022 1:04 am
torque produced being roughly proportional to airmass per cycle
torque produced being roughly proportional to fuel consumption you say? the log does agree.
image.png