evaluate_receptance_frf_model Interface

public interface evaluate_receptance_frf_model

Contents


Module Procedures

private pure function evaluate_receptance_frf_model_scalar(mdl, w) result(rst)

Evaluates the specified receptance FRF model. The model is of the following form.

Arguments

Type IntentOptional Attributes Name
real(kind=real64), intent(in), dimension(:) :: mdl

The model parameter array. The elements of the array are stored as .

real(kind=real64), intent(in) :: w

The frequency value, in rad/s, at which to evaluate the model.

Return Value complex(kind=real64)

The resulting frequency response function.

private pure function evaluate_receptance_frf_model_array(mdl, w) result(rst)

Evaluates the specified receptance FRF model. The model is of the following form.

Arguments

Type IntentOptional Attributes Name
real(kind=real64), intent(in), dimension(:) :: mdl

The model parameter array. The elements of the array are stored as .

real(kind=real64), intent(in), dimension(:) :: w

The frequency value, in rad/s, at which to evaluate the model.

Return Value complex(kind=real64), allocatable, dimension(:)

The resulting frequency response function.