Message 1 of 1
API units force

Not applicable
11-16-2016
07:54 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
I try to get results through the API.
With the following code, I get values, but the results for forces are in daN instead of N as requested in the Robot program?
IRDimDetailedRes rDimDtdResults;
rDimDtdResults = rDimTousResults.Get(usrNo);
IRDimEffDef rDimEffortsDef = rDimDtdResults.EffDef;
double Ned = rDimEffortsDef.N;
When I try to get access to units with :
IRDimUnits unités;
unités = rDimConnect.GetUnits();
the "unités" is null ? (the rDimConnect works fine as I got good results for rDimConnect.GetMembSrv() for example)
Any idea to correct this ?
Thanks