Vous êtes sur la page 1sur 4

PLC TRAINER

Ifyouneedapowerfulandhightechtool fortrainingorquickdevelopmentthen youneedourPTST100,the SuperPLCtrainer Whydowecallitso? Becauseitcontainsallwhatyouneedona PLC,ataffordablecostandonthesame equipment Justtakealooktoitsamazingfeatures. Youcanuseitforsimple laddercontrolprogramsorin advancedapplicationswithcomplex mathematics.

PTS T100

OurPTST100isapowerfultoolforindustrial automationdeveloperstosavetimeandmoneywhen quickprototypingisneeded. Educationalinstitutionshavefoundthatourtrainers arethebestwaytotrain learnersinbothsimpleand sophisticatedPLCcontrol withclassicormodern controltechniques Mostoftheothertrainingequipmentsinthemarket onlyallow computersimulation forloadsand programs.Inourcase,inadditiontothesimulation,our PLCTrainerPTST100canbeconnectedtorealdevices orloads.
Hardware
8DCinputs,4DC Outputs,4relayoutputs(10Amp) 8analoginputchannels(05VDC) Configurablein6Adsand2DAs channels 2highspeedinputs(15Khz) 2PWMoutputs 4interruptinputs RS232andRS485ports Displayof2lines16characters 64Timersand64counters 256internalrelays ConfigurablePID 6016wordsofmemoryprogram 1700wordsofEEprommemory. 4000wordsofRAMmemory 28variables(AtoZ) Clock/Calendar(option) Expansionmodules(40I/40O) Powerfulinstructionssetfor control 4JumboIndicatingLEDs 2Pushbuttons 4Switches Protectionfuse Fiberglassbase 11010%VACconnection. Connectorstointeractwiththe realworld. ON/OFFswitch 24VDCand110VACsupply availableonconnectors RS232Cserialconnectioncable

Software
Windowsenvironment. LadderandBASIC programming. Onlinemonitoring andcontrol Ethernet/Internet connectivity Easyprogram/debugging Internetserverincluded Powerfulsetofinstructions forladderandBasic Easyprogrammingand debuggingtools

Advantages

Latin Tech Inc WWW.LTAUTOMATION.COM

UsedbyRMIT(Australia),TAFE (USA),OldDominionUniversity (USA),PurdueUniversity(USA), StateUniversityofNewYork (USA),SaitPolytechnic(Canada), TorreonUniversity(Mexico),Kent StateUniversity(USA),Florida InternationalUniversity(USA), SENA(Colombia)andmanyother collegesanduniversitiesaround theworld

Unbeatable cost. Immediateindustrial application. Superfastautomation development. Softwaresimulation included. FirstinternetreadyPLC trainerstation. Multipleprotocols supported. Youcanwriteyourown protocols. Excellentforcomplextasks. Twomotionchannels included. Communicationcapabilities Portable. Modbus(110a500Kbps) Smallweightandsize OmromsC20Hprotocol Internet/ethernetEMIT3.0 Control/MonitoringthroughEXCEL Youcandevelopyourownprotocol

Tollfree8888327568

Tel3052070076Fax7756376825Miami,FLUSA

THETBASICLANGUAGECOMPONENTS
1.IntegerVariables
TheTBASICcompilerinTRiLOGIVersion4/5supportsfull32bitinteger computations.Allintegerconstantsaretreatedas32bitsandthere are26variables(AtoZ)thatare32bitsinlength.Thesevariablescan representnumbersbetween231to+231.Theremainingsystem variablesanddatamemoryDM[n]areall16bitvariableswhich meansthattheycanonlystorenumbersbetween32768to +32767.These16bitvariablesare:

DM[1]..DM[4000](Total=4000),input[n],output[n],relay[n], timerbit[n],ctrbit[n],timerPV[n],ctrPV[n],HSCPV[n],(High SpeedCounter).TIME[n],DATE[n].


However,allnumericcomputationsinTBASICarecarriedoutin32bit signedintegers,regardlessofthebitlengthofthevariablesinvolved inthenumericalexpression.AllvariablesusedinTBASICare"GLOBAL variablesthismeansthatallthesevariablesaresharedand accessiblebyanyofthe128customfunctions.

2.IntegerOperators
a)ArithmeticOperators:+,,*,/,MOD b)BitwiseLogicalOperators:
SymbolOperationExample &logicalANDIFinput[1]&&H02... |logicalORoutput[1]=A|&H08 ^ExclusiveORA=RELAY[2]^B ~logicalNOTA=~timerPV[1]

c)RelationalOperators:Usedexclusivelyfordecisionmakingexpression instatementsuchasIFexpressionTHEN.....andWHILEexpression....
SymbolOperationExample =EqualToIFA=100 <>NotEqualToWHILECTR_PV[0]<>0 >GreaterThanIFB>C/(D+10) <LessThanIFTIME[3]<59 >=GreaterThanorEqual To WHILEX>=10 <=LessThanorEqualToIFDM[I]<=5678 ANDRelationalANDIFA>BANDC<=D ORRelationalORIFA<>0ORB=1000

3.StringData
Astringisasequenceofalphanumericcharacters(8bitASCIIcodes) whichcollectivelyformanentity.Astringconstantmaycontainfrom0 to70charactersenclosedindoublequotationmarks.e.g. "TBASICmadePLCnumericprocessingapieceofcake!" "$102,345.00" TBASICsupportsamaximumof26stringvariablesA$,B$...Z$.Each stringvariablemaycontainfrom0(nullstring)uptoamaximumof70 characters.

4.StringOperators
a)AssignmentOperator:Astringvariable(A$toZ$)maybeassigned astringexpressionusingtheassignmentstatement: A$="Hello,WelcomeToTBASIC" Z$=MID$(A$,3,5) b)ConcatenationOperators:Twoormorestringscanbe concatenated(joinedtogether)simplybyusingthe"+"operator. e.g. M$="Hello"+A$+",welcometo"+B$ IfA$contains"James",andB$contains"TBASIC",M$willcontain thestring:"HelloJames,welcometoTBASIC. c)ComparisonOperators:Twostringsmaybecomparedforequality byusingthefunctionSTRCMP(A$,B$).However,theinteger comparatorsuchas"=","<>",etccannotbeusedforstring comparison.

5.TBASICStatementsandFunctions
MostofthestatementsandfunctionsofthepowerfulTBASIC languageistabulatedbelowtogetherwithbriefexplanationsfortheir purposes.

Tollfree8888327568

Tel3052070076Fax7756376825Miami,FLUSA

Tohelpyoutomakeyourdecision,wehavepreparedthistablefor youtocompare.

PTST100 Brand1
Hardware
DigitalInputs DigitalOutputs AnalogInputs AnalogOutputs Highspeed Inputs PWMOutputs Display RS232Port RS485Port Clock/Calendar Counters Timers Internalrelays Variables PIDcontrol Programmemory EEPROM memory RAMmemory Switches Pushbuttons Relays Powersupplies IndicatingLights 8 8 8(or6of8) 2(of8) 4(of8) 2(of8) 2x16LCD Yes Yes Yes(Optional) 64 64 256 28(AtoZ) Yes 6016 1700 4000 4(of8) 2(of8) 4(of8) 5VDC,24VDC and110VAC 4LED

Brand2

Comments
Withspecialfeatures Withspecialfeatures 05VDC,10bits 05VDC,8bits 10Khz Twoof10ampseach Toshowvaluesormessages Withtheincludedprotocols Withtheincludedprotocols Tocontroltime/dateevents

OurTBASICcanusevariables. 16channelsofPIDs Largememoryarea Largememoryarea Largememoryarea Totoggleinputs Withmomentaryaction Tocontrolloadsupto10amps Availableontheside connectors JumboUltrabrightLight EmittingDiodes Incasethatyouhaveadamage (factoryservice)

Removablechips Yes

Software
Ladder Ladder+Basic Sample programs Online monitoring Simulator Yes Yes Yes Yes Yes Theclassicmethodology Amorepowerfulprogramming technique Almosteveryinstructionhasits exampleforquicklearning Youcanmonitor/controleither fromyourlocalPCorfromany placeintheworld Totestyourprogramswithout thetrainer Tel3052070076Fax7756376825Miami,FLUSA

Tollfree8888327568

Instructions
Logical Math Motioncontrol Equations Emails Phone/Modem Internetserver Ladder Basic Yes Yes Yes Yes Yes Yes Yes Yes Yes Integer,32bitcalculations Tohandlesteppersorservos Makingofcomplexmath formulasiseasierthanladder Thetrainercansendemailsto anyemailaddress Instructiontodialphonesand modems Toaccessyourtrainerthrough aninternetconnection Allthecommoninstructions PowerfulsetofTBASICand Controlinstructions TosendASCIIcommandsto anydevice MasterorSlave(ASCIIorRTU) ToconnecttoOmromsPLCs TCPIPcompatible Towriteyourcommprotocol Takeitanywhereyougo Smallsizetofitinyourdesk ExtremelyLightweight Universalvoltagecomingsoon Industrialtype

Protocols
NativeASCII Modbus OmromsC20H Ehernet/internet YourOwn Yes Yes Yes Yes Yes Yes 25x22x14cm 3pounds 110VAC,(220 Opt)50/60Hz 070C

Construction
Portable Size Weight Op.Voltage OpTemperature

Tollfree8888327568

Tel3052070076Fax7756376825Miami,FLUSA

Vous aimerez peut-être aussi