Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
epufg
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs
ds
epufg
Commits
b32b904f
Commit
b32b904f
authored
7 months ago
by
Alessandro Abrami
Browse files
Options
Downloads
Patches
Plain Diff
2024/08/12: tkt22322 implementato disattivabile via prop.
parent
9ce967b4
Branches
master
Tags
1.2.2
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/EpuFG.cpp
+18
-0
18 additions, 0 deletions
src/EpuFG.cpp
with
18 additions
and
0 deletions
src/EpuFG.cpp
+
18
−
0
View file @
b32b904f
...
...
@@ -665,11 +665,29 @@ void EpuFG::write_Phases(Tango::WAttribute &attr)
(
const
char
*
)
"Wrong number of vales"
,
(
const
char
*
)
"Wrong number of vales"
,
(
const
char
*
)
"EpuFG::write_Phases()"
);
Tango
::
DevDouble
R
=
w_val
[
0
];
Tango
::
DevDouble
P
=
w_val
[
1
];
Tango
::
DevDouble
J
=
w_val
[
2
];
if
(
tkt22322_enable
){
if
(
R
>=
0.0
)
{
P
=
-
fabs
(
P
);
J
=
-
fabs
(
J
);
}
else
{
P
=
fabs
(
P
);
J
=
fabs
(
J
);
}
}
vector
<
double
>
pos
(
3
);
/*
pos[0] = w_val[0] + w_val[1];
pos[1] = w_val[1] + w_val[2];
pos[2] = w_val[0] + w_val[2];
*/
pos
[
0
]
=
R
+
P
;
pos
[
1
]
=
P
+
J
;
pos
[
2
]
=
R
+
J
;
vector
<
string
>
ph
(
3
);
ph
[
0
]
=
"ROW"
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment