setReport is used to specify the value for a report. If setReport is not called, the content of a defined report is set to "not available".
setReport(reportName,reportText)
reportName
String; name of the report to set. The report must be defined for this unit operation.
reportText
String or cell array of strings; content of the report.
» setReport('last run',{'last run finished OK',['Heat duty: ' num2str(heatDuty)]});
» setReport('last run',{...
'last run finished OK';...
['Heat duty: ' num2str(heatDuty) ' W'];...
['Enthalpy: ' num2str(h) ' ' getPropertyUnitOfMeasure('enthalpy')]...
});