Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 11096a8a authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

whr reader: throw exception in case the header columns do not match - can't...

whr reader: throw exception in case the header columns do not match - can't guess whehter el and/or mech column are provided
parent 0c552181
No related branches found
No related tags found
No related merge requests found
engine speed [rpm] , torque [Nm] , fuel consumption [g/h] , whr power electrical [W]
engine speed [rpm] , torque [Nm] , fuel consumption [g/h] , whr power electric [W]
600 , -250 , 0 , 250
600 , -150 , 0 , 250
600 , 0 , 1459 , 250
......
......@@ -45,25 +45,14 @@ namespace TUGraz.VectoCore.InputData.Reader.ComponentData
string.Join(", ", data.Columns.Cast<DataColumn>().Select(c => c.ColumnName)));
}
if (!headerValid) {
if (data.SourceType == DataSourceType.CSVFile && data.Columns.Count < 4) {
throw new VectoException("FC-Map has to contain at least 4 columns when WHR is used");
if (!headerValid && (type == WHRType.ElectricalOutput || type == WHRType.MechanicalOutputDrivetrain)) {
throw new VectoException("expected column headers: {0}", string.Join(", ", whrColumn));
}
if (!headerValid) {
data.Columns[0].ColumnName = Fields.EngineSpeed;
data.Columns[1].ColumnName = Fields.Torque;
// column with idx==2 is fuel consumption in csv files
if (type == WHRType.ElectricalOutput) {
data.Columns[3].ColumnName = Fields.ElectricPower;
}
if (type == WHRType.MechanicalOutputDrivetrain) {
if (data.Columns.Count > 3) {
data.Columns[4].ColumnName = Fields.MechanicalPower;
} else {
data.Columns[3].ColumnName = Fields.MechanicalPower;
}
}
}
var delaunayMap = new DelaunayMap(type.IsElectrical() ? "WHRMapEl" : "WHRMapMech");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment