Page 1 of 3
Re: GS450H Motor Connectors
Posted: Sat Dec 21, 2019 11:40 pm
by dso
Does anyone have the pinout for the Sumitomo 6189-1092 on the motor?
Re: GS450H Motor Connectors
Posted: Sun Dec 22, 2019 2:17 am
by arturk
Here is what I have.
Please pay attention at Harness (Left) and Components (Right) sides.
Re: GS450H Motor Connectors
Posted: Mon Dec 23, 2019 11:04 am
by dso
Awesome thank you.
Re: GS450H Motor Connectors
Posted: Thu Jan 16, 2020 8:28 pm
by streber
Does anyone know the part numbers for the harnesses that plug into the transmission and inverter?
I've figured out:
8216430040 is the harness from the battery to the inverter and is the two smaller white connectors.
8211130* appears to be the main engine harness and I think contains the connectors from the EV ECU and the Inverter (big plug), but can't confirm that or exactly which variant if it matters.
8212130D10 appears to be the ICE harness and does not appear to be the right one.
No clue for the rest of the transmission, although those seem much easier to replicate than the shielded stuff in the EV ECU <-> Inverter connection.
Re: GS450H Motor Connectors
Posted: Thu Feb 13, 2020 2:13 am
by RE3Rotor
My 450h motor is missing the resolver plugs. Does this look correct to you folks? As for the four twisted pair, can I just wire them up using some CAT6 cables?
https://www.aliexpress.com/item/4000132 ... hweb201603_
Re: GS450H Motor Connectors
Posted: Thu Feb 13, 2020 5:40 am
by arturk
Yes, this is correct plug.
Keep in mind those wires have to be shielded, CAT6 shielded should work just fine. I would try to find thick 24AWG or 26AWG minimum.
I am using CAT8 S/FTP 24AWG with each pair is individually shielded.
Re: GS450H Motor Connectors
Posted: Thu Feb 13, 2020 7:33 am
by RE3Rotor
arturk wrote: ↑Thu Feb 13, 2020 5:40 am
Yes, this is correct plug.
Keep in mind those wires have to be shielded, CAT6 shielded should work just fine. I would try to find thick 24AWG or 26AWG minimum.
I am using CAT8 S/FTP 24AWG with each pair is individually shielded.
Awesome. I watched your video and those cables look great. I said CAT6 because I can easily get the scraps from work being in IT.
Re: GS450H Motor Connectors
Posted: Fri Feb 14, 2020 9:46 am
by xp677
The 4 signals use CAN transceivers, so you should follow the requirements for CAN. Cat6 should be fine as each pair is individually screened, but who knows.
Re: GS450H Motor Connectors
Posted: Wed Feb 26, 2020 6:39 pm
by RE3Rotor
Does anyone have pinout for the resolver connections? Or all the different connections on the gearbox? Or if they can provide me screenshots of the section of the service manual, I can compile that together. I don't have all the wiring harness to go between the inverter and gearbox. I think it is valuable for those of us who needs to build a harness from scratch.
Re: GS450H Motor Connectors
Posted: Wed Feb 26, 2020 6:41 pm
by Dilbert
Here is an image of the connector, looking at the front of it.
Re: GS450H Motor Connectors
Posted: Wed Feb 26, 2020 6:58 pm
by RE3Rotor
Thank you.
Re: GS450H Motor Connectors
Posted: Wed Feb 26, 2020 8:46 pm
by Dilbert
The remaining two pins 4 & 8 are the motor temperature sensor, these don't connect to the inverter, they connect to the Vehicle ECU.
Re: GS450H Motor Connectors
Posted: Wed Feb 26, 2020 11:26 pm
by RE3Rotor
I thought I had it figured out but I don't. Do you happen to know what the two prefixes (M & G) on the resolver wiring denotes MG1 & MG2 respectively?
Re: GS450H Motor Connectors
Posted: Thu Feb 27, 2020 8:29 am
by Dilbert
The wiring diagram is here
https://openinverter.org/wiki/images/a/ab/Inverter.png
The pin numbers and signal named in the above diagram align with the earlier connector pin out I posted.
The ones starting with G are MG1 and M are MG2.
Re: GS450H Motor Connectors
Posted: Thu Feb 27, 2020 9:35 pm
by RE3Rotor
Luckily I have the harness from the gearbox to this oil pump controller. But do we have the diagram for the controller?

Re: GS450H Motor Connectors
Posted: Fri Feb 28, 2020 9:38 pm
by xp677
RE3Rotor wrote: ↑Thu Feb 27, 2020 9:35 pm
Luckily I have the harness from the gearbox to this oil pump controller. But do we have the diagram for the controller?
I know we covered it in the other thread, but just for those who see it here first, here's the diagram:
https://openinverter.org/wiki/File:Oilpump.png
For the wires to the pump itself (the red/white/black shielded cables for the motor, and the 5 feedback wires), just match the colours with your pump.
Re: GS450H Motor Connectors
Posted: Sun Mar 01, 2020 2:51 pm
by Dilbert
I measured the nominal value for the MG1 & MG2 thermistors and it came out @117K for an ambient temperature of 5-6C, which seems very high.
Has anyone else had a chance to measure the MG1 & MG2 thermistors?
Re: GS450H Motor Connectors
Posted: Sun Mar 01, 2020 4:56 pm
by arturk
I just checked mine and I am getting exactly the same results ~116K @ 6C
What the coincident that temperature in my garage is the same

Re: GS450H Motor Connectors
Posted: Sun Mar 01, 2020 6:38 pm
by Dilbert
It is hard to find data on the GS450H, but it looks like they are using they will use the same thermistor as the gen2 prius.
This NTC thermistor is 3900-3950K 47kohm!
Re: GS450H Motor Connectors
Posted: Sun Mar 01, 2020 6:41 pm
by Dilbert
Here is my function for calculating the temperature:-
float vcc = 5.0;
float adc_step = 3.3/1023.0;
float Rtop = 1800.0;
float Ro = 47000;
float To = 25+273;
float B = 3500;
float readThermistor(int adc){
float raw = adc;
float voltage = raw*adc_step;
float Rt = (voltage * Rtop)/(vcc-voltage);
float temp = (1/(1.0/To + (1.0/B)*log(Rt/Ro)))-273;
return temp;
}
Re: GS450H Motor Connectors
Posted: Sun Mar 01, 2020 7:27 pm
by Dilbert
If we want to get more information regarding the temperature rise on the motors, it might be worth changing the 1.8K pull-up to be something bigger.
With the 1.8K pull up the temp of the motor has to be > 90C before the ADC drops into range (<3.3V) where it can take a measurement.
I have verified the above calculation is correct, once the correct values for pull-up resistor is set.
Re: GS450H Motor Connectors
Posted: Sun Mar 01, 2020 7:31 pm
by arturk
Nice work!
Thanks for figuring it out.
Re: GS450H Motor Connectors
Posted: Sun Mar 01, 2020 8:58 pm
by Dilbert
Maybe a mod could move the above posts on the NTC to the vcu support thread
Re: GS450H Motor Connectors
Posted: Sun Mar 01, 2020 9:02 pm
by PacEmaker
Dilbert wrote: ↑Sun Mar 01, 2020 7:27 pm
If we want to get more information regarding the temperature rise on the motors, it might be worth changing the 1.8K pull-up to be something bigger.
With the 1.8K pull up the temp of the motor has to be > 90C before the ADC drops into range (<3.3V) where it can take a measurement.
I have verified the above calculation is correct, once the correct values for pull-up resistor is set.
Just to confirm - you're referring to R97 (MG1 temp) and R99 (MG2 temp) on Damien's V1 board?
Re: GS450H Motor Connectors
Posted: Sun Mar 01, 2020 9:49 pm
by Dilbert
R35 and R42 on the board I have (v2)