im wondering if anybody have worked on the inverter,
its the highest output mg2 i have come across 221HP/300NM

best regards
Martin
output 220hp for the LS600HLwerewolf wrote: ↑Tue Jul 28, 2020 10:31 pm https://www.diyelectriccar.com/threads/ ... er.200883/
and the follow-up:
viewtopic.php?f=14&t=205
The implications are that it -might- work out of the box with the gs450h board & software - and almost certainly that it will run with the 450h board.
Inverter wiring diagram (LHD):
ls600h lhd.jpg
Seems practically identical to the gs450h system, indeed. If the control protocols are indeed the same...
Gearboxes should be the same, other than the LF1A transfer case attachment at the end.
Correct, but I still have some hopes:
viewtopic.php?f=14&t=205&start=10#p2217Transmission data are 80 bytes, reception 100 as far as I remember for the GS450h/LS600h. The last 2 bytes are the checksum over all data bytes.
hilux_hx's last post is from before you managed to figure out the packet format, so him not sharing the format doesn't rule out the possibility of them being the same. At any rate, it is very likely that I'll be getting one soon-ish. I'm hopefulData stream is different for the RAV4h because it has 3 inverters, one additional for the rear axle motor and a built-in 12V DC/DC converter.
I'm happy to start removing people who actively work against the OI ethos... they have plenty of other forums to post support for closed solutions.Jack Bauer wrote: ↑Thu Jul 30, 2020 12:37 pm Sure is great when people don't share on the "OpenInverter" forum.... Makes life much more interesting.
I think the intension is clear;
We started this forum with the intension of doing things differently. If you don't want to share then my advice is to go somewhere else. Feel free to start a thread to discuss this if you wish.
nice looking forward to itLwerewolf wrote: ↑Fri Oct 02, 2020 12:58 pm Just as a heads-up, I finally ordered an ls600h inverter, should be able to provide info in... 2-3 weeks, hopefully. Sorry for the delay, other things took precedence
A bit about the part numbers - g9200-500(11/21) - resp. (lhd/rhd) don't show up on toyodiy or the EPC app, I assume they're a very early production model or something. I ordered a g9200-50011. Now to secure wiring before it arrives.
nice work buddyLwerewolf wrote: ↑Sat Oct 17, 2020 3:55 am Opened the inverter in order to repin the 40pin connector, as the wire harness-side connector is, well... let's say that I uhh "broke" it without really breaking it, and I gained a glimpse of the insides. You have to insert your "SST" in the depin hole and push "downwards" to free a terminal from the retainer - this is after you've gotten the retainer at "half lock" (i.e. per-pin individual lock), of course. Repinning the inverter makes switching between the GS and LS inverters way easier and safer (no rearranging 37-ish terminals every time), anyways.
At any rate, put the inverter on top of the original inverter, connected only the 40pin connector (i.e. no MG/Battery/AC connected), put the car in "accessory" mode (everything but the HV system running) - "check hybrid system". Reader - "p0a0d". There's an interlock plug in the battery connector, whou would've thought to check. At any rate - shorted that, cleared the code, car stopped complaining. My laptop needs to charge so I used hybridassistant to check whatever I could - basically the IGBT temperatures for mg1 and mg2 - and they were at 20 and 21 deg. C respectively - same as my house's room temperature. Outside was 11deg. C, engine was 16deg. c, HV (the battery) was reported around that range too. I have "motordata - hybrid" as well, which can read out everything from the HV ECU, but I forgot to use that... ah well.
Next up - up-sizing some fuses (to match the ls600h wiring diagram), connecting the MG harness to the inverter somehow, plumbing coolant, connecting AC & battery, testing.
So far, I'm very hopeful![]()
Correct. The "MG ECU" is the microcontroller on the control board within the inverter casing.Lwerewolf wrote: ↑Sat Oct 24, 2020 5:05 pm The MG ECU is built into the inverter, from what I've read from the few internal presentations on the evolution of Toyota's hybrid system that I could find - there are a few more on scribd but they don't seem to want to take my money... ah well. My guess is that the MG ECU is the thing with which the HV ECU (the hybrid vehicle ECU - basically the orchestrator) is communicating via the HTM/MTH USART lines.
Techstream/TIT pulls data from the HVECU. At least on the GS450h, there is no "outside" communication possible via the synchronous serial port, the only communication allowed to the inverter is via the microcontroller in the HVECU.Lwerewolf wrote: ↑Sat Oct 24, 2020 5:05 pm Unfortunately, neither DTCs' freeze frame data includes MGx exec/actual torque values, or RPMs... actually, there's just about nothing inverter related in the freeze frame data. Attempting to log the event manually wasn't much of a success - from what I gather, techstream's "snapshot" recording function doesn't run on the ECU itself
I don't recall seeing this mentioned anywhere. Any clue as to what it is? I'm guessing it's something calculated off of driveshaft/wheel speed.Code: Select all
//speed feedback speedSum=mg2_speed+mg1_speed; speedSum/=113; htm_data[0]=(byte)speedSum; htm_data[75]=(mg1_torque*4)&0xFF; htm_data[76]=((mg1_torque*4)>>8);
Code: Select all
mg1_speed=mth_data[6]|mth_data[7]<<8;
mg2_speed=mth_data[31]|mth_data[32]<<8;
Code: Select all
//for 255/40/R17 tyre
#define TYRE_WIDTH 255
#define TYRE_RATIO 40
#define WHEEL_SIZE 17 //inches
#define DIFF_RATIO 4.1 //x:1
#define TYRE_CIRCUMFERENCE (WHEEL_SIZE*25.4+TYRE_WIDTH*TYRE_RATIO/50)*3.14159265359/1000 //metres travelled in one wheel revolution
#define DIST_PER_MG2_REV TYRE_CIRCUMFERENCE/3.9/DIFF_RATIO/1000 //km car travels in 1x MG2 revolution
#define LOWGEAR_RATIO 2.05263157895 //how much lower the low gear is compared to high
veh_speed_kph = mg2_speed * 60 * DIST_PER_MG2_REV;
if (veh_speed_kph < 0)veh_speed kph *= -1; //for reverse
if (prnd_gear == GEAR_LOW)veh_speed_kph /= LOWGEAR_RATIO; //low gear