Skip to main content

KEB Drive Settings

Dynamometer Settings :

Ud02 = 11 F5-S/500rpm  "S=> Servo"
Enc00 = 14 Sin/Cos
Enc01 = 2048
Enc02 = 2206 + Start Command for Encoder Tuning
Dr23 = 15A  PM Rated Current. Ensure that "PM" is displayed and not "IM" set Ud02 accordingly
( lower value set due to common MCB limitations )
Dr24 = 120 rpm
Dr25 = 18 Hz
Dr27 = 800Nm
Dr28 = 25A ( lower value set due to common MCB limitations )
Dr32 = 10KW
Dr48 = 7 Auto Identification w/o move + Start Command for Motor Eq Ckt Tuning
Cs00 = 4 Speed Control Closed Loop
Cs01 = 0 encoder 1 + off
Cs05 = 0 variable Speed Kp/Ki
Cs06 = 100
Cs09 = 20
Cs15 = 2 for abs Nm Torque in Cs19, = 3 for Cs19 * Cs18 (%)
op00 =2 Digital Command Source op03
op01 = 7 Sign of Command
op02 = 0 Low Speed stopped
op03 = set speed 120 rpm  for Motor Mode
op03 = 0 rpm for Generator Mode


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...