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

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

add n_gbx_out and T_gbx_out to vmod

parent c73c5ee0
No related branches found
No related tags found
No related merge requests found
......@@ -71,6 +71,7 @@ namespace TUGraz.VectoCore.OutputData.ModFilter
ModalResultField.P_gbx_inertia,
ModalResultField.P_gbx_loss,
ModalResultField.P_angle_loss,
ModalResultField.P_retarder_in,
ModalResultField.P_ret_loss,
ModalResultField.P_veh_inertia,
ModalResultField.P_roll,
......@@ -86,7 +87,12 @@ namespace TUGraz.VectoCore.OutputData.ModFilter
ModalResultField.P_angle_loss,
ModalResultField.P_trac);
SetConstantValues(current, start, end, ModalResultField.FCMap);
SetConstantValues(current, start, end,
ModalResultField.FCMap,
ModalResultField.FCAUXc,
ModalResultField.FCAAUX,
ModalResultField.FCWHTCc,
ModalResultField.FCFinal);
//---
results.Rows.Add(start);
......@@ -111,6 +117,9 @@ namespace TUGraz.VectoCore.OutputData.ModFilter
} else if (field.GetDataType() == typeof(int)) {
start[(int)field] = current.Field<int>((int)field);
end[(int)field] = current.Field<int>((int)field);
} else if (field.GetDataType() == typeof(uint)) {
start[(int)field] = current.Field<uint>((int)field);
end[(int)field] = current.Field<uint>((int)field);
}
}
}
......
......@@ -166,6 +166,8 @@ namespace TUGraz.VectoCore.OutputData
ModalResultField.P_air,
ModalResultField.P_roll,
ModalResultField.P_veh_inertia,
ModalResultField.n_gbx_out_avg,
ModalResultField.T_gbx_out
});
if (HasTorqueConverter) {
......
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