HyperWorks Solvers

SAVPAR

SAVPAR

Previous topic Next topic No expanding text in this topic  

SAVPAR

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

Subroutine Type

Utility/Data Access

Definition

Saves the user-defined work array data.

Use

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

Calling Syntax

Fortran

CALL SAVPAR(ID, RPAR, NSIZE, INFO)

 

C

c_savpar(id, rpar, nsize, info)

 

Python

info = py_savpar(id, rpar)

 

MATLAB

info = m_savpar(id, rpar)

Input Arguments

[integer] ID

Specifies a unique identifier for the data block.

 

[double] RPAR

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

 

[integer]  NSIZE

The size of the work array.

Output Values

[integer] INFO

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

0

Normal return.

1

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

-1

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

See Also:

Data Access Subroutines