Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

IUA Programming - how to pass an entity as an argument 1

Status
Not open for further replies.

jimhunt

Specifier/Regulator
Joined
Oct 31, 2002
Messages
6
Location
GB
Just starting programming in IUA and finding my way round pretty well but stuck on one basic concept -

If for example I use the Search function in my program I get
the result in a geometric variable. Then I want to pass it as an argument to a subprogram but the subprogram wants an integer address.

Is there a standard way to translate to and fro between them?

An example code fragment would be great.
 
Hello,

you have to pass your geometrical argument as an integer.

IUA:
PTD JPTD1

LOAD XXX JTPD1

FORTRAN:
SUBROUTINE XXX (JPTD1)

INTEGER*4 JPTD1

Regards
Stefan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top