HyperWorks Solvers

RELPAR

RELPAR

Previous topic Next topic No expanding text in this topic  

RELPAR

Previous topic Next topic JavaScript is required for expanding text JavaScript is required for the print function  

Subroutine Type

Utility/Data Access

Definition

Retrieves the user-defined work array data.

Use

The function can be called by any user-defined subroutine.

Calling Syntax

Fortran

CALL RELPAR(ID, RPAR, NSIZE, INFO)

 

C

c_relpar(id, rpar, nsize, info)

 

Python

[rpar, info] = py_relpar(id)

 

MATLAB

[rpar, info] = m_relpar(id)

Input Arguments

[integer] ID

Specifies a unique identifier for the data block.

Output Values

[double] RPAR

An array of double precision values that contains the user-defined work array data.

 

[integer]  NSIZE

The size of the work array.

 

[integer] INFO

A value that indicates the status of the call to RELPAR as follows:

0

Normal return.

1

ID not found, RELOAD ignored, NSIZE will be set to zero.

-1

Access violation in copying to R RPAR.  You are responsible for making sure that RPAR is at least of size equal to NSIZE.

Comments

The ID used with RELPAR must match one of the IDs used in the SAVPAR user subroutine.

See Also:

Data Access Subroutines