output phase loss

ganutenator

Lifetime Supporting Member
Join Date
May 2002
Location
kansas
Posts
1,440
The Toshiba vfd that I am using defaults to output phase loss monitoring disabled.
If I turn it on, then it is one of the faults that don't auto reset.
Even turning the drive off and back on again doesn't clear the fault.
You have to hit the clear button twice.
I can write code to read the fault via modbus and clear the fault.

The questions:
Is the juice worth the squeeze?

How bad is output phase loss?
I know what it makes the motor sound like.
 
That’s been a default for other drives I’ve worked with.

If you’re already resetting other manually cleared faults, why not?
 
Code:
 2:SlaveAddr:= dswa_VSD_modbus_address;
		FunctionCode:= 6;
		IF (DsTrolleyVfdType = 0) THEN
		  Write_Address:= 8602;
		  WriteData[0]:= dswa_write_speed_rpm;
		ELSIF (DsTrolleyVfdType = 1) THEN
			IF DswaDriveFlt THEN
				Write_Address:= 16#FA00;
				WriteData[0]:= 16#2000;
			ELSE
		 		Write_Address:= 16#FA01; (*Hz*)
		  		dswa_write_speed_rpm_real:= INT_TO_REAL(dswa_write_speed_rpm);
		  		WriteData[0]:= REAL_TO_INT((dswa_write_speed_rpm_real / 30.0) * 100.0);
			END_IF;
		END_IF;
 

Similar Topics

Hi all. Will something like this work on a VFD output ? Carlo Gavazzi E83-2050 The VFD output frequency will be between 45-55 Hz. I know that its...
Replies
6
Views
2,135
Hi everyone, I have a AB Powerflex 753 powering a simple 480V permanent magnet motor using flux vector control (I believe it's the only control...
Replies
3
Views
1,345
Dear all, I am doing project on Kerb paving, in which there are 2 solenoid valve based on PWM output. So, main logic like, 1st PWM output based...
Replies
2
Views
2,548
Hey all, I am starting a new project for a customer and I am adding in solenoid valves. Once added, I noticed there was a lack of an Output...
Replies
0
Views
70
Hi, The hardware is: Click Plc model # CO-O1DD1-O HMI model # S3ML-R magnetic-inductive flow meter model # FMM100-1001. I will set the flow meter...
Replies
4
Views
152
Back
Top Bottom