Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
1c5ce8ad
Commit
1c5ce8ad
authored
Apr 21, 2005
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Documentation
parent
46fe8087
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
63 additions
and
24 deletions
+63
-24
src/wbl/ssab/src/ssab_c_antiswaya.wb_load
src/wbl/ssab/src/ssab_c_antiswaya.wb_load
+48
-17
src/wbl/ssab/src/ssab_c_antiswaym.wb_load
src/wbl/ssab/src/ssab_c_antiswaym.wb_load
+15
-7
No files found.
src/wbl/ssab/src/ssab_c_antiswaya.wb_load
View file @
1c5ce8ad
...
...
@@ -8,11 +8,48 @@ SObject SSAB:Class
!/**
! @Version 1.0
! @Author Jonas Haulin
! @Code rt_plc_macro_logic.h
! @Summary Antisway auto
! @Code rs_plc_antisway.c
! @Summary Sway compensation for crane in automatic mode
! Sway compensation for crane in automatic mode
!
! @image orm_antiswaya_fo.gif
! No documentation yet...
! The automatic antisway object will give an output that renders the system
! without sway at the command position if followed exactly. The function does
! not compensate for changes in Lc, but will use the value given at a new call
! throughout the travel. If there will be hoisting during the acceleration, an
! average value could be given at the same time as the command position, for
! instance.
!
! If a pointer to another AntiSwayA object is supplied in other, the two objects
! will match their travel times whenever a new position command is given to
! either object.
!
! Immediate travel start can be deactivad by turning off autoGo flag. This can
! be used if one wants to start the automatic travel on an operator's command
! rather than as soon as a new position command is given. If autoGo is turned
! off during travel, the object will set a disrupt flag and empty its set. All
! reference outputs are set to zero. To get a smooth transition, a manual antisway
! object (AntiSwayM) can be activated at the same time. In that case, it need to
! have the last non-zero uR from the AntiSwayA object, or a measured value of the
! velocity plugged into uc.
!
! Since the automatic antisway object only outputs ideal reference trajectories,
! it should be connected to a regulator of some kind ensuring trajectory tracking
! and that the final command velocity is met. Schematic example is shown below.
!
! @image orm_antiswaya_fig1.gif
!
! A simple candidate for a regulator would be a two-term regulator
! (y=uR+Ku*(uR-uc) +Kx*(xR-xc)), perhaps in combination with a ramp. Example in
! UTSKR1 plc programs.
!
! @image orm_antiswaya_fig2.gif
!
! An example of usage is shown above. Note especially the Data signal (pointer
! to other antisway object) going to the input Other.
!
! @b See also
! @classlink AntiSwayM ssab_antiswaym.html
!*/
Object AntiSwayA $ClassDef 26
Body SysBody
...
...
@@ -41,16 +78,16 @@ SObject SSAB:Class
EndBody
EndObject
!/**
! Integer that defines the impulse s
haping techniqu
e / antisway strategy.
! Current available
IST:
s are
! Integer that defines the impulse s
equenc
e / antisway strategy.
! Current available
sequence
s are
!
! 0 No antisway
! 1 Double pulse
! 2 Robust, or double double pulse
! 3 Unity-magnitude negative ZV, or triple pulse
! 4 Unity-magnitude negative ZV
S
, robust variant of triple pulse above
! 5
Time-optimal
negative ZV
! 6
Time-optimal
negative ZVD, robust variant of ZV122.
! 4 Unity-magnitude negative ZV
D
, robust variant of triple pulse above
! 5
Partial-sum
negative ZV
! 6
Partial-sum
negative ZVD, robust variant of ZV122.
!*/
Object mode $Input 2
Body SysBody
...
...
@@ -128,17 +165,11 @@ SObject SSAB:Class
! amax[1] Soft limit of acceleration. Normally, this is the acceleration
! that will be used by the object, and it should be slightly lower than
! the hard limit, amaxH.
! Having a soft limit serves two purposes. Firstly, compensation for
! hoisting requires some extra acceleration that can be kicked in when
! needed. Secondly, a frequency converter will have better chances of
! tracking the trajectory if not operating at its acceleration limit.
! Having a soft limit serves one purpose. A frequency converter will have
! better chances of tracking the trajectory if not operating at its
! acceleration limit.
! A control strategy to ensure trajectory tracking also has better chances
! of being successful.
! A suitable value of amaxS that will leave enough acceleration space for
! the hoisting compensation can be calculated from the formula;
! amaxS = amaxH/(1.0+(1.5*DLMax/sqrt(g*LMin))),
! where DLMax is the maximum hoisting speed, g the acceleration of gravity
! and LMin the minimum pendulum length.
!*/
Object amax $Intern 9
Body SysBody
...
...
src/wbl/ssab/src/ssab_c_antiswaym.wb_load
View file @
1c5ce8ad
...
...
@@ -9,10 +9,18 @@ SObject SSAB:Class
! @Version 1.0
! @Author Jonas Haulin
! @Code rs_plc_antisway.c
! @Summary Antisway manual
! @Summary Sway compensation for crane in manual mode
! Sway compensation for crane in manual mode
!
! @image orm_antiswaym_fo.gif
! No documentation yet...
!
! An example of usage is shown below where the object is combined
! with an AntiSwayA object for automatic travel.
! @image orm_antiswaya_fig2.gif
!
! @b See also
! @classlink AntiSwayA ssab_antiswaya.html
!
!*/
Object AntiSwayM $ClassDef 25
Body SysBody
...
...
@@ -25,16 +33,16 @@ SObject SSAB:Class
Attr StructName = "AntiSwayM"
EndBody
!/**
! Integer that defines the impulse s
haping techniqu
e / antisway strategy.
! Current available
IST:
s are
! Integer that defines the impulse s
equenc
e / antisway strategy.
! Current available
sequence
s are
!
! 0 No antisway
! 1 Double pulse
! 2 Robust, or double double pulse
! 3 Unity-magnitude negative ZV, or triple pulse
! 4 Unity-magnitude negative ZV
S
, robust variant of triple pulse above
! 5
Time-optimal
negative ZV
! 6
Time-optimal
negative ZVD, robust variant of ZV122.
! 4 Unity-magnitude negative ZV
D
, robust variant of triple pulse above
! 5
Partial-sum
negative ZV
! 6
Partial-sum
negative ZVD, robust variant of ZV122.
!*/
Object mode $Input 1
Body SysBody
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment