Skip to main content

Mitsubishi Servo Configuration


Servo parameters

PA01   0001 - Position Mode
PA02   00 - Regen not required
PA04   xx  Elect Mag Brake
PA05   1000 No. of command pulses per rev
PA06   1  Electronic Gear Numerator    ( PA21  1001 - enable Elec. Gear )
PA07   1  Electronic Gear Denominator
PA08   x Auto tuning
PA09  x
PA10   225 In Pos Range
PA11   30% Fwd Torque  Limit
PA12  30%  Rev Torque Limit
PA13  210  Pulse Train Type
PA14           Rot Dir CW / CCW

PD30 0010  = prevent shut-off of base ckt when alarm reset is pressed in healthy condition


PA05 = 1000 No. of command pulses per rev of the Servo Motor Shaft
with a 45 gear box this means that one revolution of the Drive Shaft will be 45,000 revolutions of the servo shaft

1 rps = 60 rpm = 45,000 pulses for the servo system
40 rpm = 30,000 pulses  ==> 1st parameter if the DPLSR command

1rev = 45,000 pulses for the servo system
2revs = 90,000 pulses for the servo system ==> 2nd Parameter of the DPLSR Command

Also PLC latched registers have to be set as below :


Zone3 end position set to 30.2 revs


Comments

Popular posts from this blog

GXWorks3 GXDeveloper3 Notes

Set Device comment using Navigation Tree View -> Device-> Common Device Comment Q1. Blinking erratic display of values when choosing Controller Type : FX A1. Communication issue between the GS2110 HMI and the FX5U PLC over ethernet was resolved by the following settings : System Tree View -> Controller Setting ->CH1-> Controller Type : Melsec iQ-F , I/F : Ethernet Multi Unit type : FX5CPU, IP Address : 192.168.1.17, Port : 5562, Communication TCP Q2. When communication between the FX5U PLC and the GS2110 HMI was established the GXWorks3 Programming software was unable to go online with the PLC - gives communication error A2. The PLC connection set to "Direct" and not "Via Hub" Q3  Unable to establish simultaneous communication to FX5U PLC with SCADA (MX OPC Server ) and HMI ( GS2110 ) Need to add Melsoft  device to correspond to the HMI as shown below Q4. Functions and Function Blocks Functions :  1. Do not get i...

FX5U PLC Module Settings

FX5U-4AD-PT-ADP FX5U-8AD

Data Logging Script

Option Explicit Dim g As SWXRuntimeLib.Global ------------------------------------------------------------- Public Sub NewScript(td As TriggerData)     On Error GoTo ErrHandler     ' TODO: Add your code here         g.ConsoleMsg MSG_INFO_VERBOSE, "Script", "Script Triggered"     Dim TimeStamp1 As Date     TimeStamp1 = Now() 'use raw date-time format for inserting into SQL Table DateTime column         ' Motor Data variable declarations     Dim WindingNo As String, WindingNoTrim As String, MachineSrNo As String, MachineSrNoTrim As String     Dim ModelNo As String, FGCode As String, OperatorName As String, DateTimeInfo As String     Dim RatedSpd As Integer, EncoderPPR As Integer, InvSwFreq As Integer     Dim RatedI As Double, RatedT As Double, RatedF As Double, StallI As Double     ' No Load Test variable declarations     Dim RY_L...