CEMValidator

The computational electromagnetic (CEM) validator.

Example

app = cf.GetApplication()
project = app:OpenFile(FEKO_HOME..[[/shared/Resources/Automation/Waveguide_Divider.cfx]])

    -- Run CEM validation on the model and if it fails, report the first error
    
if ( not project.CEMValidator:Validate() ) then
    error(project.CEMValidator.Results[1])
end

Usage locations (object properties)

The following objects have properties using the CEMValidator object:

Property List

Results
The list of validation results. (Read only List of string)
Type
The object type string. (Read only string)

Method List

Validate ()
Validate the model for computational electromagnetic (CEM) consistency. (Returns a boolean object.)

Property Details

Results
The list of validation results.
Access
Read only
Type
The object type string.
Type
string
Access
Read only

Method Details

Validate ()
Validate the model for computational electromagnetic (CEM) consistency.
Return
boolean
The boolean validation result.