diff --git a/docs/powertrain_build_introduction.md b/docs/powertrain_build_introduction.md index bd9c6c1..f1637e4 100644 --- a/docs/powertrain_build_introduction.md +++ b/docs/powertrain_build_introduction.md @@ -41,3 +41,17 @@ Once activated, you can execute it: ```shell PYTHONPATH=//powertrain-build python -m powertrain_build.wrapper build-specific --project-config Projects/CSP/PvcDepDemo/ProjectCfg.json --core-dummy ``` + +### Local Testing + +Other than the unit tests, there are two very small sample projects to build. +These projects can be found in the *test_data/test_repo/Projects* folder. + +The project *ZC/ZCLA_LVCSC* generates a yaml file describing the interface, +as well as collecting/generating source code. +*CSP/CATC* only collects/generates source code. + +To test run one of these projects, start a terminal in the *test_data/test_repo* folder and execute: + +* `export PYTHONPATH=my/path/to/powertrain-build/` +* `python3 -m powertrain_build.wrapper --build CSP/CATC` diff --git a/playbooks/powertrain-build-and-compile.yaml b/playbooks/powertrain-build-and-compile.yaml new file mode 100644 index 0000000..ca6f54e --- /dev/null +++ b/playbooks/powertrain-build-and-compile.yaml @@ -0,0 +1,36 @@ +--- +- name: powertrain-build build and compile + hosts: all + pre_tasks: + - name: Install pip3 + ansible.builtin.apt: + name: python3-pip + become: true + - name: Install gcc + ansible.builtin.apt: + name: gcc-multilib + become: true + tasks: + - name: Create virtual python env + ansible.builtin.command: python3 -m venv {{ venv_folder }} + args: + chdir: "{{ zuul.project.src_dir }}" + - name: Install powertrain-build + ansible.builtin.command: ./{{ venv_folder }}/bin/python -m pip install . + args: + chdir: "{{ zuul.project.src_dir }}" + - name: Build test projects + ansible.builtin.command: ../../{{ venv_folder }}/bin/python -m powertrain_build.wrapper build-specific --project-config Projects/{{ item.project }}/ProjectCfg.json --no-abort --complete-a2l --rte-dummy + args: + chdir: "{{ zuul.project.src_dir }}/test_data/test_repo" + loop: "{{ test_projects }}" + - name: Create dummy main file + ansible.builtin.copy: + dest: "{{ zuul.project.src_dir }}/test_data/test_repo/Projects/{{ item.project }}/output/SourceCode/main.c" + content: int main() {return 0;} + loop: "{{ test_projects }}" + - name: Compile test project + ansible.builtin.shell: gcc -Wall -I. *.c -o {{ item.name | lower }} + args: + chdir: "{{ zuul.project.src_dir }}/test_data/test_repo/Projects/{{ item.project }}/output/SourceCode" + loop: "{{ test_projects }}" diff --git a/test_data/test_repo/ConfigDocuments/BaseConfig.json b/test_data/test_repo/ConfigDocuments/BaseConfig.json new file mode 100644 index 0000000..445844b --- /dev/null +++ b/test_data/test_repo/ConfigDocuments/BaseConfig.json @@ -0,0 +1,102 @@ +{ + "BaseConfigFileVersion": "0.2.1", + "ProjectInfo" : { + "deviceDomains": "./conf.local/DeviceDomains.json", + "serviceInterfaces": "./conf.local/ServiceInterfaces.json", + "didDefFile": "DIDIds_FullRange", + "didCarCom": "./output/CarCom_DIDDefs.csv", + "srcCodeDstDir": "./output/SourceCode", + "reportDstDir": "./output/Reports", + "logDstDir": "./output/logs", + "configDir": "../../ConfigDocuments", + "interfaceCfgDir": "./Config/ActiveInterfaces", + "commonSrcDir": "../../Models/Common/pybuild_src", + "prjUnitSrcDir": "../../Models/*/Vc*/pybuild_src", + "prjUnitCfgDir": "../../Models/*/Vc*/pybuild_cfg", + "prjUnitMdlDir": "../../Models/*/Vc*", + "prjLocalDefs": "*_LocalDefs.h", + "prjCodeswitches": "SPM_Codeswitch_Setup*.csv", + "coreDummyFileName" : "VcCoreDummy", + "featureHeaderName": "VcCodeSwDefines.h", + "tsHeaderName": "VcUnitTsDefines.h", + "useGlobalConst" : "VcConst" + }, + "NvmConfig": { + "fileName" : "vcc_nvm_struct", + "baseNvmStructs" : "./conf.local/nvm_structs.json" + }, + "ProjectTemplates": { + "Denso": { + "generalAsilLevelDebug": "B", + "generalAsilLevelDependability": "B", + "generateCalibrationInterfaceFiles": false, + "generateCoreDummy": true, + "generateDummyVar": true, + "generateInterfaceHeaders": false, + "generateYamlInterfaceFile": false, + "propagateTagName": true, + "useA2lSymbolLinks": true, + "useSwcNameAsPrefix": false + }, + "RB": { + "generalAsilLevelDebug": "B", + "generalAsilLevelDependability": "B", + "generateCalibrationInterfaceFiles": false, + "generateCoreDummy": true, + "generateDummyVar": true, + "generateInterfaceHeaders": false, + "generateYamlInterfaceFile": false, + "propagateTagName": false, + "useA2lSymbolLinks": false, + "useSwcNameAsPrefix": false + }, + "CSP": { + "generalAsilLevelDebug": "B", + "generalAsilLevelDependability": "B", + "generateCalibrationInterfaceFiles": false, + "generateCoreDummy": false, + "generateDummyVar": false, + "generateInterfaceHeaders": false, + "generateYamlInterfaceFile": false, + "propagateTagName": false, + "useA2lSymbolLinks": false, + "useSwcNameAsPrefix": false + }, + "HP": { + "generalAsilLevelDebug": "B", + "generalAsilLevelDependability": "B", + "generateCalibrationInterfaceFiles": false, + "generateCoreDummy": true, + "generateDummyVar": false, + "generateInterfaceHeaders": false, + "generateYamlInterfaceFile": false, + "propagateTagName": false, + "useA2lSymbolLinks": false, + "useSwcNameAsPrefix": false + }, + "HI": { + "generalAsilLevelDebug": "D", + "generalAsilLevelDependability": "D", + "generateCalibrationInterfaceFiles": false, + "generateCoreDummy": false, + "generateDummyVar": false, + "generateInterfaceHeaders": true, + "generateYamlInterfaceFile": false, + "propagateTagName": false, + "useA2lSymbolLinks": false, + "useSwcNameAsPrefix": false + }, + "ZC": { + "generalAsilLevelDebug": "B", + "generalAsilLevelDependability": "B", + "generateCalibrationInterfaceFiles": true, + "generateCoreDummy": false, + "generateDummyVar": false, + "generateInterfaceHeaders": true, + "generateYamlInterfaceFile": true, + "propagateTagName": false, + "useA2lSymbolLinks": false, + "useSwcNameAsPrefix": true + } + } +} diff --git a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/conf.local/nvm_structs.json b/test_data/test_repo/ConfigDocuments/pytools_settings/conversion_table.json similarity index 100% rename from tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/conf.local/nvm_structs.json rename to test_data/test_repo/ConfigDocuments/pytools_settings/conversion_table.json diff --git a/test_data/test_repo/Models/Common/VcEnumDefinitions/CarModes.m b/test_data/test_repo/Models/Common/VcEnumDefinitions/CarModes.m new file mode 100644 index 0000000..16a1d71 --- /dev/null +++ b/test_data/test_repo/Models/Common/VcEnumDefinitions/CarModes.m @@ -0,0 +1,25 @@ +classdef CarModes < Simulink.IntEnumType + + enumeration + Normal(0) + Transport(1) + Factory(2) + Dyno(3) + Show(4) + end + + methods (Static) + function retVal = getDescription() + retVal = 'CarModes'; + end + function retVal = getDefaultValue() + retVal = CarModes.Normal; + end + function retVal = getDataScope() + retVal = 'Exported'; + end + function retVal = addClassNameToEnumNames() + retVal = true; + end + end +end diff --git a/test_data/test_repo/Models/Common/VcEnumDefinitions/CoolgPfmnc.m b/test_data/test_repo/Models/Common/VcEnumDefinitions/CoolgPfmnc.m new file mode 100644 index 0000000..9bfd0ef --- /dev/null +++ b/test_data/test_repo/Models/Common/VcEnumDefinitions/CoolgPfmnc.m @@ -0,0 +1,25 @@ +classdef CoolgPfmnc < Simulink.IntEnumType + %CoolgPfmnc CoolgPfmnc enumeration + + enumeration + Uncertain(0) + NotOk(1) + LimitedPerformance(2) + Ok(3) + end + + methods (Static) + function retVal = getDescription() + retVal = 'CoolgPfmnc'; + end + function retVal = getDefaultValue() + retVal = CoolgPfmnc.Uncertain; + end + function retVal = getDataScope() + retVal = 'Exported'; + end + function retVal = addClassNameToEnumNames() + retVal = true; + end + end +end diff --git a/test_data/test_repo/Models/Common/VcEnumDefinitions/CoolingFlowPower.m b/test_data/test_repo/Models/Common/VcEnumDefinitions/CoolingFlowPower.m new file mode 100644 index 0000000..e9ac52f --- /dev/null +++ b/test_data/test_repo/Models/Common/VcEnumDefinitions/CoolingFlowPower.m @@ -0,0 +1,31 @@ +classdef CoolingFlowPower < Simulink.IntEnumType + + enumeration + k0percentage(0) + k10percentage(1) + k20percentage(2) + k30percentage(3) + k40percentage(4) + k50percentage(5) + k60percentage(6) + k70percentage(7) + k80percentage(8) + k90percentage(9) + k100percentage(10) + end + + methods (Static) + function retVal = getDescription() + retVal = 'CoolingFlowPower'; + end + function retVal = getDefaultValue() + retVal = CoolingFlowPower.k0percentage; + end + function retVal = getDataScope() + retVal = 'Exported'; + end + function retVal = addClassNameToEnumNames() + retVal = true; + end + end +end diff --git a/test_data/test_repo/Models/Common/VcEnumDefinitions/EmCoolgReq.m b/test_data/test_repo/Models/Common/VcEnumDefinitions/EmCoolgReq.m new file mode 100644 index 0000000..372efee --- /dev/null +++ b/test_data/test_repo/Models/Common/VcEnumDefinitions/EmCoolgReq.m @@ -0,0 +1,25 @@ +classdef EmCoolgReq < Simulink.IntEnumType + + enumeration + NoRequestForMoreCoolantPower(0) + IncreaseLevel1ForMoreCoolantPower(1) + IncreaseLevel2ForMoreCoolantPower(2) + MaxCoolingPower(3) + NotDefined(4) + end + + methods (Static) + function retVal = getDescription() + retVal = 'EmCoolgReq'; + end + function retVal = getDefaultValue() + retVal = EmCoolgReq.NotDefined; + end + function retVal = getDataScope() + retVal = 'Exported'; + end + function retVal = addClassNameToEnumNames() + retVal = true; + end + end +end diff --git a/test_data/test_repo/Models/Common/VcEnumDefinitions/EmMod.m b/test_data/test_repo/Models/Common/VcEnumDefinitions/EmMod.m new file mode 100644 index 0000000..4494410 --- /dev/null +++ b/test_data/test_repo/Models/Common/VcEnumDefinitions/EmMod.m @@ -0,0 +1,26 @@ +classdef EmMod < Simulink.IntEnumType + + enumeration + Initiation(0) + Standby(1) + TorqueControl(2) + PreCharge(3) + PowerDown(4) + Fault(5) + end + + methods (Static) + function retVal = getDescription() + retVal = 'EmMod'; + end + function retVal = getDefaultValue() + retVal = EmMod.Initiation; + end + function retVal = getDataScope() + retVal = 'Exported'; + end + function retVal = addClassNameToEnumNames() + retVal = true; + end + end +end diff --git a/test_data/test_repo/Models/Common/VcEnumDefinitions/HvBattSnsrSts.m b/test_data/test_repo/Models/Common/VcEnumDefinitions/HvBattSnsrSts.m new file mode 100644 index 0000000..61b9a3c --- /dev/null +++ b/test_data/test_repo/Models/Common/VcEnumDefinitions/HvBattSnsrSts.m @@ -0,0 +1,23 @@ +classdef HvBattSnsrSts < Simulink.IntEnumType + + enumeration + Uncertain(0) + Ok(1) + NotOk(2) + end + + methods (Static) + function retVal = getDescription() + retVal = 'HvBattSnsrSts'; + end + function retVal = getDefaultValue() + retVal = HvBattSnsrSts.Uncertain; + end + function retVal = getDataScope() + retVal = 'Exported'; + end + function retVal = addClassNameToEnumNames() + retVal = true; + end + end +end diff --git a/test_data/test_repo/Models/Common/VcEnumDefinitions/HvChrgrCnctnSts.m b/test_data/test_repo/Models/Common/VcEnumDefinitions/HvChrgrCnctnSts.m new file mode 100644 index 0000000..ace26ce --- /dev/null +++ b/test_data/test_repo/Models/Common/VcEnumDefinitions/HvChrgrCnctnSts.m @@ -0,0 +1,27 @@ +classdef HvChrgrCnctnSts < Simulink.IntEnumType + + enumeration + Initialization(0) + Disconnected(1) + NoPower(2) + NotActivated(3) + Ongoing(4) + NotUsed(5) + Fault(6) + end + + methods (Static) + function retVal = getDescription() + retVal = 'HvChrgrCnctnSts'; + end + function retVal = getDefaultValue() + retVal = HvChrgrCnctnSts.Initialization; + end + function retVal = getDataScope() + retVal = 'Exported'; + end + function retVal = addClassNameToEnumNames() + retVal = true; + end + end +end diff --git a/test_data/test_repo/Models/Common/VcEnumDefinitions/HvChrgrTyp.m b/test_data/test_repo/Models/Common/VcEnumDefinitions/HvChrgrTyp.m new file mode 100644 index 0000000..6b4fbb6 --- /dev/null +++ b/test_data/test_repo/Models/Common/VcEnumDefinitions/HvChrgrTyp.m @@ -0,0 +1,31 @@ +classdef HvChrgrTyp < Simulink.IntEnumType + + enumeration + NotDetected(0) + SinglePhaseAc(1) + CHAdeMO(2) + CcsDc(3) + GbtDc(4) + ThreePhaseAc(5) + Inductive(6) + TwoPhaseAC(7) + CiaoJi1(8) + CiaoJi2(9) + Invalid(10) + end + + methods (Static) + function retVal = getDescription() + retVal = 'HvChrgrTyp'; + end + function retVal = getDefaultValue() + retVal = HvChrgrTyp.NotDetected; + end + function retVal = getDataScope() + retVal = 'Exported'; + end + function retVal = addClassNameToEnumNames() + retVal = true; + end + end +end diff --git a/test_data/test_repo/Models/Common/VcEnumDefinitions/HvCntctSts.m b/test_data/test_repo/Models/Common/VcEnumDefinitions/HvCntctSts.m new file mode 100644 index 0000000..288bbea --- /dev/null +++ b/test_data/test_repo/Models/Common/VcEnumDefinitions/HvCntctSts.m @@ -0,0 +1,22 @@ +classdef HvCntctSts < Simulink.IntEnumType + + enumeration + Open(0) + Closed(1) + end + + methods (Static) + function retVal = getDescription() + retVal = 'HvCntctSts'; + end + function retVal = getDefaultValue() + retVal = HvCntctSts.Open; + end + function retVal = getDataScope() + retVal = 'Exported'; + end + function retVal = addClassNameToEnumNames() + retVal = true; + end + end +end diff --git a/test_data/test_repo/Models/Common/VcEnumDefinitions/HvDcDcFltSts.m b/test_data/test_repo/Models/Common/VcEnumDefinitions/HvDcDcFltSts.m new file mode 100644 index 0000000..e41973e --- /dev/null +++ b/test_data/test_repo/Models/Common/VcEnumDefinitions/HvDcDcFltSts.m @@ -0,0 +1,25 @@ +classdef HvDcDcFltSts < Simulink.IntEnumType + + enumeration + Electrical(0) + OverTemperature(1) + Communication(2) + MicroControl(3) + Unknown(4) + end + + methods (Static) + function retVal = getDescription() + retVal = 'HvDcDcFltSts'; + end + function retVal = getDefaultValue() + retVal = HvDcDcFltSts.Unknown; + end + function retVal = getDataScope() + retVal = 'Exported'; + end + function retVal = addClassNameToEnumNames() + retVal = true; + end + end +end diff --git a/test_data/test_repo/Models/Common/VcEnumDefinitions/HvDcDcMod.m b/test_data/test_repo/Models/Common/VcEnumDefinitions/HvDcDcMod.m new file mode 100644 index 0000000..ca50fed --- /dev/null +++ b/test_data/test_repo/Models/Common/VcEnumDefinitions/HvDcDcMod.m @@ -0,0 +1,24 @@ +classdef HvDcDcMod < Simulink.IntEnumType + + enumeration + NoConversion(0) + BuckMode(1) + BoostMode(2) + NotSpecified(3) + end + + methods (Static) + function retVal = getDescription() + retVal = 'HvDcDcMod'; + end + function retVal = getDefaultValue() + retVal = HvDcDcMod.NotSpecified; + end + function retVal = getDataScope() + retVal = 'Exported'; + end + function retVal = addClassNameToEnumNames() + retVal = true; + end + end +end diff --git a/test_data/test_repo/Models/Common/VcEnumDefinitions/VmsQf.m b/test_data/test_repo/Models/Common/VcEnumDefinitions/VmsQf.m new file mode 100644 index 0000000..482dd0a --- /dev/null +++ b/test_data/test_repo/Models/Common/VcEnumDefinitions/VmsQf.m @@ -0,0 +1,26 @@ +classdef VmsQf < Simulink.IntEnumType + + enumeration + Error(0) + Unknown(1) + Low(2) + Medium(3) + High(4) + Full(5) + end + + methods (Static) + function retVal = getDescription() + retVal = 'VmsQf'; + end + function retVal = getDefaultValue() + retVal = VmsQf.Unknown; + end + function retVal = getDataScope() + retVal = 'Exported'; + end + function retVal = addClassNameToEnumNames() + retVal = true; + end + end +end diff --git a/test_data/test_repo/Models/Common/pybuild_src/tl_basetypes.h b/test_data/test_repo/Models/Common/pybuild_src/tl_basetypes.h new file mode 100644 index 0000000..410b728 --- /dev/null +++ b/test_data/test_repo/Models/Common/pybuild_src/tl_basetypes.h @@ -0,0 +1,31 @@ +/**************************************************************************************************\ + *** + *** Simulink model : VcConst_OPortMvd + *** TargetLink subsystem : VcConst_OPortMvd/VcConst + *** Codefile : tl_basetypes.h + *** + *** Generation date: 2019-02-12 20:32:00 + *** + *** TargetLink version : 4.3p3 from 16-Oct-2018 + *** Code generator version : Build Id 4.3.0.27 from 2018-09-24 17:55:03 +\**************************************************************************************************/ + +#ifndef TL_BASETYPES_H +#define TL_BASETYPES_H + + + +typedef unsigned char Bool; /* Description: boolean basetype */ +typedef float Float32; /* Description: 32 bit floating-point basetype */ +typedef double Float64; /* Description: 64 bit floating-point basetype */ +typedef signed short int Int16; /* Description: 16 bit signed integer basetype */ +typedef signed long int Int32; /* Description: 32 bit signed integer basetype */ +typedef signed char Int8; /* Description: 8 bit signed integer basetype */ +typedef unsigned short int UInt16; /* Description: 16 bit unsigned integer basetype */ +typedef unsigned long int UInt32; /* Description: 32 bit unsigned integer basetype */ +typedef unsigned char UInt8; /* Description: 8 bit unsigned integer basetype */ + +#endif /* TL_BASETYPES_H */ +/*------------------------------------------------------------------------------------------------*\ + END OF FILE +\*------------------------------------------------------------------------------------------------*/ diff --git a/test_data/test_repo/Models/Common/pybuild_src/tl_types.h b/test_data/test_repo/Models/Common/pybuild_src/tl_types.h new file mode 100644 index 0000000..9f29189 --- /dev/null +++ b/test_data/test_repo/Models/Common/pybuild_src/tl_types.h @@ -0,0 +1,22 @@ +/**************************************************************************************************\ + *** + *** Simulink model : VcConst_OPortMvd + *** TargetLink subsystem : VcConst_OPortMvd/VcConst + *** Codefile : tl_types.h + *** + *** Generation date: 2019-02-12 20:32:00 + *** + *** TargetLink version : 4.3p3 from 16-Oct-2018 + *** Code generator version : Build Id 4.3.0.27 from 2018-09-24 17:55:03 +\**************************************************************************************************/ + +#ifndef TL_TYPES_H +#define TL_TYPES_H + + +#include "tl_basetypes.h" + +#endif /* TL_TYPES_H */ +/*------------------------------------------------------------------------------------------------*\ + END OF FILE +\*------------------------------------------------------------------------------------------------*/ diff --git a/test_data/test_repo/Models/IF/VcTestRx/pybuild_cfg/VcTestRx.yaml b/test_data/test_repo/Models/IF/VcTestRx/pybuild_cfg/VcTestRx.yaml new file mode 100644 index 0000000..3700a11 --- /dev/null +++ b/test_data/test_repo/Models/IF/VcTestRx/pybuild_cfg/VcTestRx.yaml @@ -0,0 +1,11 @@ +######################################################## +# +# Service for input values of app to VcTestRx model +# +######################################################## +service: + ClimateAndThermalControlInternal: + properties: + - ControlRequests: + - insignal: yVcVmp_B_VehModConv + property: dummy diff --git a/test_data/test_repo/Models/IF/VcTestRx/pybuild_cfg/config_VcTestRx.json b/test_data/test_repo/Models/IF/VcTestRx/pybuild_cfg/config_VcTestRx.json new file mode 100644 index 0000000..801c0d4 --- /dev/null +++ b/test_data/test_repo/Models/IF/VcTestRx/pybuild_cfg/config_VcTestRx.json @@ -0,0 +1,77 @@ +{ + "version": "0.2.1", + "includes": [], + "integrity_level": "QM", + "outports": { + "sVcTestRx_Te_AmbTRaw": { + "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out1", + "name": "sVcTestRx_Te_AmbTRaw", + "configs": "((ALWAYS_ACTIVE))", + "description": "Ambient Temperature Raw", + "type": "Float32", + "unit": "deg C", + "offset": "-", + "lsb": "-", + "min": "-", + "max": "-", + "class": "CVC_DISP", + "width": 1 + } + }, + "inports": { + "yVcVmp_B_VehModConv": { + "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In1", + "name": "yVcVmp_B_VehModConv", + "configs": "((ALWAYS_ACTIVE))", + "description": "Vehicle Mode convinience", + "type": "Bool", + "unit": "-", + "offset": "-", + "lsb": "-", + "min": "-", + "max": "-", + "class": "CVC_EXT", + "width": 1 + } + }, + "core": { + "Events": {}, + "IUMPR": {}, + "FIDs": {}, + "Ranking": {}, + "TstId": {} + }, + "dids": {}, + "nvm": {}, + "pre_procs": [], + "local_vars": { + "rVcTestRx_Z_Version": { + "type": "Float32", + "unit": "-", + "description": "Version of the VcTestRx SPM", + "max": 10000, + "min": 0, + "lsb": 1, + "offset": 0, + "class": "CVC_DISP", + "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Gain1", + "configs": "((ALWAYS_ACTIVE))", + "width": 1 + } + }, + "calib_consts": { + "cVcTestRx_B_EmFrntCoolgReqSwi": { + "type": "Bool", + "unit": "-", + "description": "Wheel Motor System Front Cooling Request", + "max": "-", + "min": "-", + "lsb": 1, + "offset": 0, + "class": "CVC_CAL", + "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/1_From_ihfa/B_EmFrntCoolgReqSwi", + "configs": "((ALWAYS_ACTIVE))", + "width": 1 + } + } +} \ No newline at end of file diff --git a/test_data/test_repo/Models/IF/VcTestRx/pybuild_src/VcTestRx.c b/test_data/test_repo/Models/IF/VcTestRx/pybuild_src/VcTestRx.c new file mode 100644 index 0000000..c735183 --- /dev/null +++ b/test_data/test_repo/Models/IF/VcTestRx/pybuild_src/VcTestRx.c @@ -0,0 +1,117 @@ +#ifndef VCTESTRX_C +#define VCTESTRX_C + +/*------------------------------------------------------------------------------------------------*\ + DEFINES (OPT) +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + INCLUDES +\*------------------------------------------------------------------------------------------------*/ + +#include "VcUnitTsDefines.h" +#include "VcTestRx.h" + +/*------------------------------------------------------------------------------------------------*\ + ENUMS +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + DEFINES +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + TYPEDEFS +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + VARIABLES +\*------------------------------------------------------------------------------------------------*/ + +#include "CVC_CAL_START.h" +/**************************************************************************************************\ + CVC_CAL: CVC calibration constants in FLASH | Width: 32 +\**************************************************************************************************/ +CVC_CAL Bool cVcTestRx_B_EmFrntCoolgReqSwi = 0; /* + Unit: - + MIN/MAX: 0 .. 1 + Description: Dummy */ +#include "CVC_CAL_END.h" + +#include "CVC_DISP_START.h" +/**************************************************************************************************\ + CVC_DISP: CVC global observable variables in RAM | Width: 32 +\**************************************************************************************************/ +CVC_DISP Float32 sVcTestRx_Te_AmbTRaw; /* + Unit: - + MIN/MAX: 0 .. 100 + Description: Dummy */ +#include "CVC_DISP_END.h" + +/*------------------------------------------------------------------------------------------------*\ + PARAMETERIZED MACROS +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + FUNCTION PROTOTYPES +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + INLINE FUNCTIONS +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + FUNCTION DEFINITIONS +\*------------------------------------------------------------------------------------------------*/ + +/**************************************************************************************************\ + *** FUNCTION: + *** RESTART_VcTestRx + *** + *** DESCRIPTION: + *** Main restart function + *** + *** + *** PARAMETERS: + *** Type Name Description + *** ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + *** + *** RETURNS: + *** void + *** + *** SETTINGS: + *** +\**************************************************************************************************/ +#include "CVC_CODE_START.h" +void RESTART_VcTestRx(void) +{ + cVcTestRx_B_EmFrntCoolgReqSwi = 0; +} +#include "CVC_CODE_END.h" + +/**************************************************************************************************\ + *** FUNCTION: + *** VcTestRx + *** + *** DESCRIPTION: + *** + *** + *** PARAMETERS: + *** Type Name Description + *** ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + *** + *** RETURNS: + *** void + *** + *** SETTINGS: + *** +\**************************************************************************************************/ +#include "CVC_CODE_START.h" +void VcTestRx(void) +{ + sVcTestRx_Te_AmbTRaw = (Float32)yVcVmp_B_VehModConv; + cVcTestRx_B_EmFrntCoolgReqSwi = 0; +} +#include "CVC_CODE_END.h" + +/*------------------------------------------------------------------------------------------------*\ + MODULE LOCAL FUNCTION DEFINITIONS +\*------------------------------------------------------------------------------------------------*/ +#endif /* VCTESTRX_C */ +/*------------------------------------------------------------------------------------------------*\ + END OF FILE +\*------------------------------------------------------------------------------------------------*/ + diff --git a/test_data/test_repo/Models/IF/VcTestRx/pybuild_src/VcTestRx.h b/test_data/test_repo/Models/IF/VcTestRx/pybuild_src/VcTestRx.h new file mode 100644 index 0000000..5b69a13 --- /dev/null +++ b/test_data/test_repo/Models/IF/VcTestRx/pybuild_src/VcTestRx.h @@ -0,0 +1,71 @@ +#ifndef VCTESTRX_H +#define VCTESTRX_H + +/*------------------------------------------------------------------------------------------------*\ + DEFINES (OPT) +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + INCLUDES +\*------------------------------------------------------------------------------------------------*/ + +#include "udt_TestRx.h" +#include "tl_defines_TestRx.h" +#include "tl_basetypes.h" + +/*------------------------------------------------------------------------------------------------*\ + ENUMS +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + DEFINES +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + TYPEDEFS +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + VARIABLES +\*------------------------------------------------------------------------------------------------*/ + +#include "PREDECL_CAL_START.h" +extern CVC_CAL Bool cVcTestRx_B_EmFrntCoolgReqSwi; /* + Unit: - + MIN/MAX: 0 .. 1 + Description: Dummy */ +#include "PREDECL_CAL_END.h" + +#include "PREDECL_DISP_START.h" +/**************************************************************************************************\ + CVC_DISP: CVC global observable variables in RAM | Width: 32 +\**************************************************************************************************/ +extern CVC_DISP Float32 sVcTestRx_Te_AmbTRaw; /* + Unit: - + MIN/MAX: 0 .. 100 + Description: Dummy */ +#include "PREDECL_DISP_END.h" + +#include "PREDECL_START.h" +/**************************************************************************************************\ + CVC_EXT: CVC external interface input variables | Width: 32 +\**************************************************************************************************/ +CVC_EXT Bool yVcVmp_B_VehModConv; /* + Unit: deg C + MIN/MAX: 0 .. 1 + Description: Dummy */ +#include "PREDECL_END.h" + +/*------------------------------------------------------------------------------------------------*\ + PARAMETERIZED MACROS +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + FUNCTION PROTOTYPES +\*------------------------------------------------------------------------------------------------*/ + +/**************************************************************************************************\ + GLOBAL_FCN: global function(s) (exported to other modules) +\**************************************************************************************************/ +extern void RESTART_VcTestRx(void); +extern void VcTestRx(void); + +#endif /* VCTESTRX_H */ +/*------------------------------------------------------------------------------------------------*\ + END OF FILE +\*------------------------------------------------------------------------------------------------*/ diff --git a/test_data/test_repo/Models/IF/VcTestRx/pybuild_src/tl_defines_TestRx.h b/test_data/test_repo/Models/IF/VcTestRx/pybuild_src/tl_defines_TestRx.h new file mode 100644 index 0000000..78fb045 --- /dev/null +++ b/test_data/test_repo/Models/IF/VcTestRx/pybuild_src/tl_defines_TestRx.h @@ -0,0 +1,16 @@ +#ifndef TL_DEFINES_TESTRX_H +#define TL_DEFINES_TESTRX_H + +/**************************************************************************************************\ + TL_CG_MACROCL_GLOBAL: Default macro class for macros with module extent +\**************************************************************************************************/ +#define CVC_CAL +#define CVC_DISP +#define CVC_EXT extern +#define EXTERN_GLOBAL_ALIAS extern + +#endif /* TL_DEFINES_TESTRX_H */ +/*------------------------------------------------------------------------------------------------*\ + END OF FILE +\*------------------------------------------------------------------------------------------------*/ + diff --git a/test_data/test_repo/Models/IF/VcTestRx/pybuild_src/udt_TestRx.h b/test_data/test_repo/Models/IF/VcTestRx/pybuild_src/udt_TestRx.h new file mode 100644 index 0000000..5c2a3af --- /dev/null +++ b/test_data/test_repo/Models/IF/VcTestRx/pybuild_src/udt_TestRx.h @@ -0,0 +1,107 @@ +#ifndef UDT_TESTRX_H +#define UDT_TESTRX_H + +#include "tl_basetypes.h" + +typedef enum CarModes_tag { + CARMODES_NORMAL = 0, + CARMODES_TRANSPORT = 1, + CARMODES_FACTORY = 2, + CARMODES_DYNO = 3, + CARMODES_SHOW = 4 +} CarModes; /* Description: Enumeration type derived from Simulink type CarModes */ + +typedef enum CoolingFlowPower_tag { + COOLINGFLOWPOWER_K0PERCENTAGE = 0, + COOLINGFLOWPOWER_K10PERCENTAGE = 1, + COOLINGFLOWPOWER_K20PERCENTAGE = 2, + COOLINGFLOWPOWER_K30PERCENTAGE = 3, + COOLINGFLOWPOWER_K40PERCENTAGE = 4, + COOLINGFLOWPOWER_K50PERCENTAGE = 5, + COOLINGFLOWPOWER_K60PERCENTAGE = 6, + COOLINGFLOWPOWER_K70PERCENTAGE = 7, + COOLINGFLOWPOWER_K80PERCENTAGE = 8, + COOLINGFLOWPOWER_K90PERCENTAGE = 9, + COOLINGFLOWPOWER_K100PERCENTAGE = 10 +} CoolingFlowPower; /* Description: Enumeration type derived from Simulink type CoolingFlowPower */ + +typedef enum EmCoolgReq_tag { + EMCOOLGREQ_NOREQUESTFORMORECOOLANTPOWER = 0, + EMCOOLGREQ_INCREASELEVEL1FORMORECOOLANTPOWER = 1, + EMCOOLGREQ_INCREASELEVEL2FORMORECOOLANTPOWER = 2, + EMCOOLGREQ_MAXCOOLINGPOWER = 3, + EMCOOLGREQ_NOTDEFINED = 4 +} EmCoolgReq; /* Description: Enumeration type derived from Simulink type EmCoolgReq */ + +typedef enum EmMod_tag { + EMMOD_INITIATION = 0, + EMMOD_STANDBY = 1, + EMMOD_TORQUECONTROL = 2, + EMMOD_PRECHARGE = 3, + EMMOD_POWERDOWN = 4, + EMMOD_FAULT = 5 +} EmMod; /* Description: Enumeration type derived from Simulink type EmMod */ + +typedef enum HvBattSnsrSts_tag { + HVBATTSNSRSTS_UNCERTAIN = 0, + HVBATTSNSRSTS_OK = 1, + HVBATTSNSRSTS_NOTOK = 2 +} HvBattSnsrSts; /* Description: Enumeration type derived from Simulink type HvBattSnsrSts */ + +typedef enum HvChrgrCnctnSts_tag { + HVCHRGRCNCTNSTS_INITIALIZATION = 0, + HVCHRGRCNCTNSTS_DISCONNECTED = 1, + HVCHRGRCNCTNSTS_NOPOWER = 2, + HVCHRGRCNCTNSTS_NOTACTIVATED = 3, + HVCHRGRCNCTNSTS_ONGOING = 4, + HVCHRGRCNCTNSTS_NOTUSED = 5, + HVCHRGRCNCTNSTS_FAULT = 6 +} HvChrgrCnctnSts; /* Description: Enumeration type derived from Simulink type HvChrgrCnctnSts */ + +typedef enum HvChrgrTyp_tag { + HVCHRGRTYP_NOTDETECTED = 0, + HVCHRGRTYP_SINGLEPHASEAC = 1, + HVCHRGRTYP_CHADEMO = 2, + HVCHRGRTYP_CCSDC = 3, + HVCHRGRTYP_GBTDC = 4, + HVCHRGRTYP_THREEPHASEAC = 5, + HVCHRGRTYP_INDUCTIVE = 6, + HVCHRGRTYP_TWOPHASEAC = 7, + HVCHRGRTYP_CIAOJI1 = 8, + HVCHRGRTYP_CIAOJI2 = 9, + HVCHRGRTYP_INVALID = 10 +} HvChrgrTyp; /* Description: Enumeration type derived from Simulink type HvChrgrTyp */ + +typedef enum HvCntctSts_tag { + HVCNTCTSTS_OPEN = 0, + HVCNTCTSTS_CLOSED = 1 +} HvCntctSts; /* Description: Enumeration type derived from Simulink type HvCntctSts */ + +typedef enum HvDcDcFltSts_tag { + HVDCDCFLTSTS_ELECTRICAL = 0, + HVDCDCFLTSTS_OVERTEMPERATURE = 1, + HVDCDCFLTSTS_COMMUNICATION = 2, + HVDCDCFLTSTS_MICROCONTROL = 3, + HVDCDCFLTSTS_UNKNOWN = 4 +} HvDcDcFltSts; /* Description: Enumeration type derived from Simulink type HvDcDcFltSts */ + +typedef enum HvDcDcMod_tag { + HVDCDCMOD_NOCONVERSION = 0, + HVDCDCMOD_BUCKMODE = 1, + HVDCDCMOD_BOOSTMODE = 2, + HVDCDCMOD_NOTSPECIFIED = 3 +} HvDcDcMod; /* Description: Enumeration type derived from Simulink type HvDcDcMod */ + +typedef enum VmsQf_tag { + VMSQF_ERROR = 0, + VMSQF_UNKNOWN = 1, + VMSQF_LOW = 2, + VMSQF_MEDIUM = 3, + VMSQF_HIGH = 4, + VMSQF_FULL = 5 +} VmsQf; /* Description: Enumeration type derived from Simulink type VmsQf */ + +#endif /* UDT_TESTRX_H */ +/*------------------------------------------------------------------------------------------------*\ + END OF FILE +\*------------------------------------------------------------------------------------------------*/ diff --git a/test_data/test_repo/Models/IF/VcTestTx/pybuild_cfg/VcTestTx.yaml b/test_data/test_repo/Models/IF/VcTestTx/pybuild_cfg/VcTestTx.yaml new file mode 100644 index 0000000..1524c33 --- /dev/null +++ b/test_data/test_repo/Models/IF/VcTestTx/pybuild_cfg/VcTestTx.yaml @@ -0,0 +1,13 @@ +######################################################## +# +# Direct connection for output values of app from VcTestTx model +# To different DPs +# +# Please correct the list below with correct domains and properties +# Group signals that match together? +# +######################################################## +signals: + dummy: + - outsignal: sVcTestTx_X_AirFlapPosnReqForDefrst1 + property: dummy diff --git a/test_data/test_repo/Models/IF/VcTestTx/pybuild_cfg/config_VcTestTx.json b/test_data/test_repo/Models/IF/VcTestTx/pybuild_cfg/config_VcTestTx.json new file mode 100644 index 0000000..b5b6d10 --- /dev/null +++ b/test_data/test_repo/Models/IF/VcTestTx/pybuild_cfg/config_VcTestTx.json @@ -0,0 +1,121 @@ +{ + "version": "0.2.1", + "includes": [], + "integrity_level": "QM", + "outports": { + "sVcTestTx_X_AirFlapPosnReqForDefrst1": { + "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out1", + "name": "sVcTestTx_X_AirFlapPosnReqForDefrst1", + "configs": "((ALWAYS_ACTIVE))", + "description": "HVAC actuator request", + "type": "Float32", + "unit": "%", + "offset": "-", + "lsb": "-", + "min": 0, + "max": 100, + "class": "CVC_DISP", + "width": 1 + } + }, + "inports": { + "sVcCcHvcTx_X_ActRqRo1Def": { + "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In1", + "name": "sVcCcHvcTx_X_ActRqRo1Def", + "configs": "((ALWAYS_ACTIVE))", + "description": "HVAC actuator request", + "type": "Float32", + "unit": "-", + "offset": "-", + "lsb": "-", + "min": 0, + "max": 100, + "class": "CVC_EXT", + "width": 1 + } + }, + "core": { + "Events": { + "AccPedSnsr1Fault": { + "API_blk": [ + { + "path": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/1_Diag/12_DTC/122_AccrPedl/Dem_SetEventStatusPF", + "config": [ + "all" + ] + }, + { + "path": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/1_Diag/12_DTC/122_AccrPedl/Dem_SetEventStatusPP", + "config": [ + "all" + ] + } + ], + "blk_name": "NamedConstant", + "subsystem": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/1_Diag/12_DTC/122_AccrPedl", + "API_blk_type": "Dem_SetEventStatusPre-Passed", + "description": "Description missing", + "type": "-", + "unit": "-", + "offset": "-", + "lsb": "-", + "min": "-", + "max": "-", + "class": "-", + "configs": "((ALWAYS_ACTIVE))" + } + }, + "IUMPR": {}, + "FIDs": {}, + "Ranking": {}, + "TstId": {} + }, + "dids": { + "rVcTestTx_D_AccrPedlPosnInfo": { + "handle": "VcTestTx__SPA3/VcTestTx/Subsystem/VcTestTx/VcTestTx/1_Diag/11_DID/111_AccrPedlDIDs/1111_AccPedPosnDID/Sum6", + "name": "rVcTestTx_D_AccrPedlPosnInfo", + "configs": "((ALWAYS_ACTIVE))", + "description": "DID FFFF Accelerator Pedal Logical Position and Quality.", + "type": "UInt16", + "unit": "-", + "offset": 0, + "lsb": 1, + "min": "-", + "max": "-", + "class": "CVC_DISP" + } + }, + "nvm": {}, + "pre_procs": [], + "local_vars": { + "rVcTestTx_D_AccrPedlPosnInfo": { + "handle": "VcTestTx__SPA3/VcTestTx/Subsystem/VcTestTx/VcTestTx/1_Diag/11_DID/111_AccrPedlDIDs/1111_AccPedPosnDID/Sum6", + "name": "rVcTestTx_D_AccrPedlPosnInfo", + "configs": "((ALWAYS_ACTIVE))", + "description": "DID FFFF Accelerator Pedal Logical Position and Quality.", + "type": "UInt16", + "unit": "-", + "offset": 0, + "lsb": 1, + "min": "-", + "max": "-", + "width": 1, + "class": "CVC_DISP" + } + }, + "calib_consts": { + "cVcTestTx_B_HvcFanRampSw": { + "type": "Bool", + "unit": "-", + "description": "", + "max": "-", + "min": "-", + "lsb": 1, + "offset": 0, + "class": "CVC_CAL", + "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_To_HBMF/B_HvcFanRampSw", + "configs": "((ALWAYS_ACTIVE))", + "width": 1 + } + } +} \ No newline at end of file diff --git a/test_data/test_repo/Models/IF/VcTestTx/pybuild_src/VcTestTx.c b/test_data/test_repo/Models/IF/VcTestTx/pybuild_src/VcTestTx.c new file mode 100644 index 0000000..0cd939a --- /dev/null +++ b/test_data/test_repo/Models/IF/VcTestTx/pybuild_src/VcTestTx.c @@ -0,0 +1,121 @@ +#ifndef VCTESTTX_C +#define VCTESTTX_C + +/*------------------------------------------------------------------------------------------------*\ + DEFINES (OPT) +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + INCLUDES +\*------------------------------------------------------------------------------------------------*/ + +#include "VcUnitTsDefines.h" +#include "VcTestTx.h" + +/*------------------------------------------------------------------------------------------------*\ + ENUMS +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + DEFINES +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + TYPEDEFS +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + VARIABLES +\*------------------------------------------------------------------------------------------------*/ + +#include "CVC_CAL_START.h" +/**************************************************************************************************\ + CVC_CAL: CVC calibration constants in FLASH | Width: 32 +\**************************************************************************************************/ +CVC_CAL Bool cVcTestTx_B_HvcFanRampSw = 0; /* + Unit: - + MIN/MAX: 0 .. 1 + Description: Dummy */ +#include "CVC_CAL_END.h" + +#include "CVC_DISP_START.h" +/**************************************************************************************************\ + CVC_DISP: CVC global observable variables in RAM | Width: 32 +\**************************************************************************************************/ +CVC_DISP Float32 sVcTestTx_X_AirFlapPosnReqForDefrst1; /* + Unit: - + MIN/MAX: 0 .. 100 + Description: Dummy */ +CVC_DISP UInt16 rVcTestTx_D_AccrPedlPosnInfo; /* + Unit: - + MIN/MAX: - + Description: DID FFFF Accelerator Pedal Logical Position and Quality. */ +#include "CVC_DISP_END.h" + +/*------------------------------------------------------------------------------------------------*\ + PARAMETERIZED MACROS +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + FUNCTION PROTOTYPES +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + INLINE FUNCTIONS +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + FUNCTION DEFINITIONS +\*------------------------------------------------------------------------------------------------*/ + +/**************************************************************************************************\ + *** FUNCTION: + *** RESTART_VcTestTx + *** + *** DESCRIPTION: + *** Main restart function + *** + *** + *** PARAMETERS: + *** Type Name Description + *** ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + *** + *** RETURNS: + *** void + *** + *** SETTINGS: + *** +\**************************************************************************************************/ +#include "CVC_CODE_START.h" +void RESTART_VcTestTx(void) +{ + cVcTestTx_B_HvcFanRampSw = 0; +} +#include "CVC_CODE_END.h" + +/**************************************************************************************************\ + *** FUNCTION: + *** VcTestTx + *** + *** DESCRIPTION: + *** + *** + *** PARAMETERS: + *** Type Name Description + *** ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + *** + *** RETURNS: + *** void + *** + *** SETTINGS: + *** +\**************************************************************************************************/ +#include "CVC_CODE_START.h" +void VcTestTx(void) +{ + sVcTestTx_X_AirFlapPosnReqForDefrst1 = sVcCcHvcTx_X_ActRqRo1Def; + cVcTestTx_B_HvcFanRampSw = 0; +} +#include "CVC_CODE_END.h" + +/*------------------------------------------------------------------------------------------------*\ + MODULE LOCAL FUNCTION DEFINITIONS +\*------------------------------------------------------------------------------------------------*/ +#endif /* VCTESTTX_C */ +/*------------------------------------------------------------------------------------------------*\ + END OF FILE +\*------------------------------------------------------------------------------------------------*/ + diff --git a/test_data/test_repo/Models/IF/VcTestTx/pybuild_src/VcTestTx.h b/test_data/test_repo/Models/IF/VcTestTx/pybuild_src/VcTestTx.h new file mode 100644 index 0000000..f82177b --- /dev/null +++ b/test_data/test_repo/Models/IF/VcTestTx/pybuild_src/VcTestTx.h @@ -0,0 +1,75 @@ +#ifndef VCTESTTX_H +#define VCTESTTX_H + +/*------------------------------------------------------------------------------------------------*\ + DEFINES (OPT) +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + INCLUDES +\*------------------------------------------------------------------------------------------------*/ + +#include "udt_TestTx.h" +#include "tl_defines_TestTx.h" +#include "tl_basetypes.h" + +/*------------------------------------------------------------------------------------------------*\ + ENUMS +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + DEFINES +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + TYPEDEFS +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + VARIABLES +\*------------------------------------------------------------------------------------------------*/ + +#include "PREDECL_CAL_START.h" +extern CVC_CAL Bool cVcTestTx_B_HvcFanRampSw; /* + Unit: - + MIN/MAX: 0 .. 1 + Description: Dummy */ +#include "PREDECL_CAL_END.h" + +#include "PREDECL_DISP_START.h" +/**************************************************************************************************\ + CVC_DISP: CVC global observable variables in RAM | Width: 32 +\**************************************************************************************************/ +extern CVC_DISP Float32 sVcTestTx_X_AirFlapPosnReqForDefrst1; /* + Unit: - + MIN/MAX: 0 .. 100 + Description: Dummy */ +extern CVC_DISP UInt16 rVcTestTx_D_AccrPedlPosnInfo; /* + Unit: - + MIN/MAX: - + Description: DID FFFF Accelerator Pedal Logical Position and Quality. */ +#include "PREDECL_DISP_END.h" + +#include "PREDECL_START.h" +/**************************************************************************************************\ + CVC_EXT: CVC external interface input variables | Width: 32 +\**************************************************************************************************/ +CVC_EXT Float32 sVcCcHvcTx_X_ActRqRo1Def; /* + Unit: deg C + MIN/MAX: 0 .. 100 + Description: Dummy */ +#include "PREDECL_END.h" + +/*------------------------------------------------------------------------------------------------*\ + PARAMETERIZED MACROS +\*------------------------------------------------------------------------------------------------*/ +/*------------------------------------------------------------------------------------------------*\ + FUNCTION PROTOTYPES +\*------------------------------------------------------------------------------------------------*/ + +/**************************************************************************************************\ + GLOBAL_FCN: global function(s) (exported to other modules) +\**************************************************************************************************/ +extern void RESTART_VcTestTx(void); +extern void VcTestTx(void); + +#endif /* VCTESTTX_H */ +/*------------------------------------------------------------------------------------------------*\ + END OF FILE +\*------------------------------------------------------------------------------------------------*/ diff --git a/test_data/test_repo/Models/IF/VcTestTx/pybuild_src/tl_defines_TestTx.h b/test_data/test_repo/Models/IF/VcTestTx/pybuild_src/tl_defines_TestTx.h new file mode 100644 index 0000000..489e41e --- /dev/null +++ b/test_data/test_repo/Models/IF/VcTestTx/pybuild_src/tl_defines_TestTx.h @@ -0,0 +1,16 @@ +#ifndef TL_DEFINES_TESTTX_H +#define TL_DEFINES_TESTTX_H + +/**************************************************************************************************\ + TL_CG_MACROCL_GLOBAL: Default macro class for macros with module extent +\**************************************************************************************************/ +#define CVC_CAL +#define CVC_DISP +#define CVC_EXT extern +#define EXTERN_GLOBAL_ALIAS extern + +#endif /* TL_DEFINES_TESTTX_H */ +/*------------------------------------------------------------------------------------------------*\ + END OF FILE +\*------------------------------------------------------------------------------------------------*/ + diff --git a/test_data/test_repo/Models/IF/VcTestTx/pybuild_src/udt_TestTx.h b/test_data/test_repo/Models/IF/VcTestTx/pybuild_src/udt_TestTx.h new file mode 100644 index 0000000..9bb8484 --- /dev/null +++ b/test_data/test_repo/Models/IF/VcTestTx/pybuild_src/udt_TestTx.h @@ -0,0 +1,16 @@ +#ifndef UDT_TESTTX_H +#define UDT_TESTTX_H + +#include "tl_basetypes.h" + +typedef enum CoolgPfmnc_tag { + COOLGPFMNC_UNCERTAIN = 0, + COOLGPFMNC_NOTOK = 1, + COOLGPFMNC_LIMITEDPERFORMANCE = 2, + COOLGPFMNC_OK = 3 +} CoolgPfmnc; /* Description: Enumeration type derived from Simulink type CoolgPfmnc */ + +#endif /* UDT_TESTTX_H */ +/*------------------------------------------------------------------------------------------------*\ + END OF FILE +\*------------------------------------------------------------------------------------------------*/ diff --git a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/CSP_Codeswitch_Setup.csv b/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/CSP_Codeswitch_Setup.csv similarity index 100% rename from tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/CSP_Codeswitch_Setup.csv rename to test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/CSP_Codeswitch_Setup.csv diff --git a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/CSP_Codeswitch_Setup_Thermal.csv b/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/CSP_Codeswitch_Setup_Thermal.csv similarity index 100% rename from tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/CSP_Codeswitch_Setup_Thermal.csv rename to test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/CSP_Codeswitch_Setup_Thermal.csv diff --git a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_EventIDs.csv b/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_EventIDs.csv similarity index 100% rename from tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_EventIDs.csv rename to test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_EventIDs.csv diff --git a/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_FunctionIDs.csv b/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_FunctionIDs.csv new file mode 100644 index 0000000..ce5d845 --- /dev/null +++ b/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_FunctionIDs.csv @@ -0,0 +1,3 @@ +;;;;PROJECTS; +Model name;Function Id Name;Description;Comments;ClimCtr;Old Id +VcDummy;VcFiDummy;VcFi forAmbient Pressure Rationality Monitor (comparison to other sensor at eng off);;;ATPR diff --git a/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_IUMPR.csv b/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_IUMPR.csv new file mode 100644 index 0000000..3322be7 --- /dev/null +++ b/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_IUMPR.csv @@ -0,0 +1,3 @@ +;;;;;PROJECTS; +Model name;IUMPR Id Name;Description;Controlling FiD;Comments;ClimCtr;Old Id +VcDummy;Vc09Dummy;Ratio Id for Boost Pressure High Rationality Monitor;VcFiDummy;;;BSTR_HI diff --git a/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_IUMPRDen.csv b/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_IUMPRDen.csv new file mode 100644 index 0000000..d7f7059 --- /dev/null +++ b/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_IUMPRDen.csv @@ -0,0 +1,3 @@ +;;;;This sheet does not have projects +IUMPR Id Name;Description;IUMPR Denominator trigger;Comments; +Vc09Dummy;Ratio Id for catalyst monitor;0;; diff --git a/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_Mode$06.csv b/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_Mode$06.csv new file mode 100644 index 0000000..7edd321 --- /dev/null +++ b/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_Mode$06.csv @@ -0,0 +1,3 @@ +;;;;;;PROJECTS;Comments +Model name;Mode $06 Name;Description;Fid;Unit and Scaling ID;Comments;ClimCtr;Old Id +VcDummy;Vc06Dummy;Test Result Id for high boost pressure Monitoring;VcFiDummy;17;;;BSTR_HI diff --git a/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_Ranking.csv b/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_Ranking.csv new file mode 100644 index 0000000..facd3fc --- /dev/null +++ b/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_Ranking.csv @@ -0,0 +1,3 @@ +;;;;;PROJECTS; +Model name;Event Name;Description;Fid;Comments;ClimCtr;Old Id +VcDummy;VcRvDummy;Ranking Id for Ambient Pressure Rationality Monitor;VcFiDummy;;;ATPR diff --git a/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_Float32.csv b/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_Float32.csv new file mode 100644 index 0000000..3a6f5d2 --- /dev/null +++ b/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_Float32.csv @@ -0,0 +1,3 @@ +Range Min;Range Max +0xE300;0xE32F +DID_NAME;DID ID diff --git a/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_FullRange_Float32.csv b/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_FullRange_Float32.csv new file mode 100644 index 0000000..df316cf --- /dev/null +++ b/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_FullRange_Float32.csv @@ -0,0 +1,3 @@ +Range Min;Range Max +0xE300;0xE5FF +DID_NAME;DID ID diff --git a/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_FullRange_UInt32.csv b/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_FullRange_UInt32.csv new file mode 100644 index 0000000..184207d --- /dev/null +++ b/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_FullRange_UInt32.csv @@ -0,0 +1,4 @@ +Range Min;Range Max +0xE400;0xE4FF +DID_NAME;DID ID +rVcTestTx_D_AccrPedlPosnInfo;0xE400 diff --git a/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_UInt32.csv b/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_UInt32.csv new file mode 100644 index 0000000..8f4f1c6 --- /dev/null +++ b/test_data/test_repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_UInt32.csv @@ -0,0 +1,3 @@ +Range Min;Range Max +0xE400;0xE404 +DID_NAME;DID ID diff --git a/test_data/test_repo/Projects/CSP/CATC/ProjectCfg.json b/test_data/test_repo/Projects/CSP/CATC/ProjectCfg.json new file mode 100644 index 0000000..d5537a4 --- /dev/null +++ b/test_data/test_repo/Projects/CSP/CATC/ProjectCfg.json @@ -0,0 +1,29 @@ +{ + "ConfigFileVersion": "0.2.1", + "BaseConfig" : "../../../ConfigDocuments/BaseConfig.json", + "ProjectInfo" : { + "yamlInterface": true, + "projConfig" : "CSP_CATC", + "a2LFileName": "SPM.a2l", + "ecuSupplier" : "CSP", + "ecuType" : "", + "unitCfgDeliveryDir": "./output/UnitCfgs", + "configDir": "ConfigDocuments", + "prjCodeswitches": "CSP_Codeswitch_Setup*.csv", + "commonSrcDir": "../../../Models/Common/pybuild_src", + "prjUnitSrcDir": "../../../Models/*/Vc*/pybuild_src", + "prjUnitCfgDir": "../../../Models/*/Vc*/pybuild_cfg", + "prjUnitMdlDir": "../../../Models/*/Vc*", + "useGlobalConst": false, + "enumDefDir": "../../../Models/Common/VcEnumDefinitions" + }, + "UnitCfgs": "./conf.local/rasters.json", + "includesPathsTree": [ + "../../../resources/static_code/csp_headers", + "../../../resources/static_code/CSPCoreAPITL" + ], + "includedCommonFiles": [ + "tl_basetypes", + "tl_types" + ] +} diff --git a/test_data/test_repo/Projects/CSP/CATC/conf.local/DeviceDomains.json b/test_data/test_repo/Projects/CSP/CATC/conf.local/DeviceDomains.json new file mode 100644 index 0000000..46a2b1c --- /dev/null +++ b/test_data/test_repo/Projects/CSP/CATC/conf.local/DeviceDomains.json @@ -0,0 +1,3 @@ +{ + "dummy": "dummy" +} \ No newline at end of file diff --git a/test_data/test_repo/Projects/CSP/CATC/conf.local/ServiceInterfaces.json b/test_data/test_repo/Projects/CSP/CATC/conf.local/ServiceInterfaces.json new file mode 100644 index 0000000..a162f8d --- /dev/null +++ b/test_data/test_repo/Projects/CSP/CATC/conf.local/ServiceInterfaces.json @@ -0,0 +1,3 @@ +{ + "ClimateAndThermalControlInternal": "climate-and-thermal-control-service" +} \ No newline at end of file diff --git a/test_data/test_repo/Projects/CSP/CATC/conf.local/nvm_structs.json b/test_data/test_repo/Projects/CSP/CATC/conf.local/nvm_structs.json new file mode 100644 index 0000000..fe51488 --- /dev/null +++ b/test_data/test_repo/Projects/CSP/CATC/conf.local/nvm_structs.json @@ -0,0 +1 @@ +[] diff --git a/test_data/test_repo/Projects/CSP/CATC/conf.local/rasters.json b/test_data/test_repo/Projects/CSP/CATC/conf.local/rasters.json new file mode 100644 index 0000000..e103ac6 --- /dev/null +++ b/test_data/test_repo/Projects/CSP/CATC/conf.local/rasters.json @@ -0,0 +1,9 @@ +{ + "SampleTimes": { + "VcExt50ms": 0.05 + }, + "VcExt50ms": [ + "VcTestRx", + "VcTestTx" + ] +} diff --git a/test_data/test_repo/Projects/CSP/hal_list.yaml b/test_data/test_repo/Projects/CSP/hal_list.yaml new file mode 100644 index 0000000..144efb3 --- /dev/null +++ b/test_data/test_repo/Projects/CSP/hal_list.yaml @@ -0,0 +1,2 @@ +hal-dummy: DummyHAL + diff --git a/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/Config/ActiveInterfaces/diagnostics.yaml b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/Config/ActiveInterfaces/diagnostics.yaml new file mode 100644 index 0000000..b9052ca --- /dev/null +++ b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/Config/ActiveInterfaces/diagnostics.yaml @@ -0,0 +1,32 @@ +# NOTE: This is an example file describing external diagnostics needs, +# the struct contains data for both the yaml2arxml and the yaml2xml tools, +# which are tools internal for Volvo. +diagnostics: + events: + AccPedSnsr1Fault: + operations: [SetEventStatus] + runnable: [AR_LVCSC_VcExt10ms] + Identifier: '0xFF' + ThresholdUnconfirmed: 127 + StepDown: 128 + JumpDown: "on" + JumpDownInit: 0 + StepUp: 127 + JumpUp: "on" + JumpUpInit: 0 + TestFailedLimit: 127 + TestPassedLimit: -128 + AgedDTCLimit: 255 + ConfirmedDTCLimit: 3 + DTCEventPriority: 1 + OperationCycle: Dummy + EnaDEMInd: off + IndEnaCondGroup: Dummy + IndSnapshotGroup: Dummy + dids: + rVcTestTx_D_AccrPedlPosnInfo: + Identifier: 'FFFF' + NumberOfParameters: 2 + TotalNoOfBytes: 2 + operations: + ReadData: {} diff --git a/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/Config/ActiveInterfaces/nvm.yaml b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/Config/ActiveInterfaces/nvm.yaml new file mode 100644 index 0000000..802d86a --- /dev/null +++ b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/Config/ActiveInterfaces/nvm.yaml @@ -0,0 +1,31 @@ +nv-needs: + LVCSC_NVM_LIST_8: + type: type1 + method: NVSWCOMPONENT + datatype: UInt8 + runnables: [AR_LVCSC_VcExt10ms] + LVCSC_NVM_LIST_8_PER: + type: type1 + method: NVSWCOMPONENT + datatype: UInt8 + runnables: [AR_LVCSC_VcExt10ms] + LVCSC_NVM_LIST_16: + type: type1 + method: NVSWCOMPONENT + datatype: UInt16 + runnables: [AR_LVCSC_VcExt10ms] + LVCSC_NVM_LIST_16_PER: + type: type1 + method: NVSWCOMPONENT + datatype: UInt16 + runnables: [AR_LVCSC_VcExt10ms] + LVCSC_NVM_LIST_32: + type: type1 + method: NVSWCOMPONENT + datatype: UInt32 + runnables: [AR_LVCSC_VcExt10ms] + LVCSC_NVM_LIST_32_PER: + type: type1 + method: NVSWCOMPONENT + datatype: UInt32 + runnables: [AR_LVCSC_VcExt10ms] \ No newline at end of file diff --git a/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/Config/ActiveInterfaces/ports.yaml b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/Config/ActiveInterfaces/ports.yaml new file mode 100644 index 0000000..9629f53 --- /dev/null +++ b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/Config/ActiveInterfaces/ports.yaml @@ -0,0 +1,19 @@ +ports: + ################### IN #################### + DummyIn: + direction: IN + interface: DummyIn + element: + DummyIn: + - insignal: yVcVmp_B_VehModConv + property: VehModConv + updateBit: true + e2eStatus: true + ################### OUT ################### + DummyOut: + direction: OUT + interface: DummyOut + element: + DummyOut: + - outsignal: sVcTestTx_X_AirFlapPosnReqForDefrst1 + property: AirFlapPosnReqForDefrst1 diff --git a/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/ConfigDocuments/Codeswitch_Setup.csv b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/ConfigDocuments/Codeswitch_Setup.csv new file mode 100644 index 0000000..b519431 --- /dev/null +++ b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/ConfigDocuments/Codeswitch_Setup.csv @@ -0,0 +1 @@ +Switch name;Description;ZCLA_LVCSC diff --git a/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/ConfigDocuments/Codeswitch_Setup_LVCSC.csv b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/ConfigDocuments/Codeswitch_Setup_LVCSC.csv new file mode 100644 index 0000000..b519431 --- /dev/null +++ b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/ConfigDocuments/Codeswitch_Setup_LVCSC.csv @@ -0,0 +1 @@ +Switch name;Description;ZCLA_LVCSC diff --git a/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/ConfigDocuments/ConfigDocuments.md b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/ConfigDocuments/ConfigDocuments.md new file mode 100644 index 0000000..16e7422 --- /dev/null +++ b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/ConfigDocuments/ConfigDocuments.md @@ -0,0 +1,6 @@ +# ConfigDocuments + +[TOC] + +## Description +This folder contains configuration items that set Code switch settings for SPM units used in the models. \ No newline at end of file diff --git a/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/Makefile b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/Makefile new file mode 100644 index 0000000..dd3c740 --- /dev/null +++ b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/Makefile @@ -0,0 +1,28 @@ +SRC_DIR =output/SourceCode +INC_DIR =output/SourceCode +EXT_INC_DIR =../../../resources/gcc/zc/headers +OBJ_DIR =output/obj +BIN_DIR =output/bin + +csrc =$(wildcard $(SRC_DIR)/*.c) +objs =$(subst $(SRC_DIR),$(OBJ_DIR), $(csrc:.c=.o)) + +CFLAGS =-I$(INC_DIR) -I$(EXT_INC_DIR) -no-pie -w -static +LDFLAGS =-Wl,--relocatable + +$(BIN_DIR)/lvcsc.o: $(objs) | $(BIN_DIR) + $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) + +$(OBJ_DIR)/%.o: $(SRC_DIR)/%.c | $(OBJ_DIR) + $(CC) $(CFLAGS) -c -o $@ $< + +$(BIN_DIR): + mkdir -p $@ + +$(OBJ_DIR): + mkdir -p $@ + +.PHONY: clean +clean: + $(RM) -r $(OBJ_DIR) + $(RM) -r $(BIN_DIR) diff --git a/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/ProjectCfg.json b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/ProjectCfg.json new file mode 100644 index 0000000..b6501e1 --- /dev/null +++ b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/ProjectCfg.json @@ -0,0 +1,69 @@ +{ + "ConfigFileVersion": "0.2.1", + "BaseConfig" : "../../../ConfigDocuments/BaseConfig.json", + "ProjectInfo" : { + "yamlInterface": true, + "projConfig" : "ZCLA_LVCSC", + "a2LFileName": "SPM.a2l", + "ecuSupplier" : "ZC", + "ecuType" : "", + "unitCfgDeliveryDir": "./output/UnitCfgs", + "configDir": "ConfigDocuments", + "prjCodeswitches": "Codeswitch_Setup*.csv", + "commonSrcDir": "../../../Models/Common/pybuild_src", + "prjUnitSrcDir": "../../../Models/*/Vc*/pybuild_src", + "prjUnitCfgDir": "../../../Models/*/Vc*/pybuild_cfg", + "prjUnitMdlDir": "../../../Models/*/Vc*", + "prjTranslationDir": "Config/ActiveInterfaces", + "useGlobalConst": false, + "schedulerPrefix":"LVCSC", + "useVolatileGlobals": false + }, + "CodeGenerationConfig": { + "useRteNvmStructs": true + }, + "CompositionConfig": { + "compositionName": "McLvcSafe", + "compositionArxml": "interface/McLvcSafe_GPA_24.arxml", + "softwareComponentName":"LVCSC", + "softwareComponentTemplate": "ARTCSC", + "generateExternalImplementationType": false, + "asil": "ASILD", + "secure" : false, + "includeNvm": true, + "nvmPortPattern": "PS_LVCSC_SwcNv_{NvName}" + }, + "UnitCfgs": "./conf.local/rasters.json", + "includesPaths": [], + "A2lConfig": { + "complete": true, + "name": "LVCSC", + "allowKpBlob": false, + "ipAddress": "198.19.64.47", + "ipPort": 40245, + "asap2Version": "1 60" + }, + "MemoryMapConfig": { + "memMapPrefix": "LVCSC", + "includeHeaderGuards": false, + "includeMemMapForCalibration": true, + "projectDefines": { + "START": { + "code": "#define LVCSC_START_SEC_VCC_RUN", + "const": "#define LVCSC_START_SEC_VCC_CONST", + "disp": "#define LVCSC_START_SEC_VCC_CLEAR_INIT_SLOW", + "cal": "#define LVCSC_START_SEC_VCC_CALIBRATION" + }, + "STOP": { + "code": "#define LVCSC_STOP_SEC_VCC_RUN", + "const": "#define LVCSC_STOP_SEC_VCC_CONST", + "disp": "#define LVCSC_STOP_SEC_VCC_CLEAR_INIT_SLOW", + "cal": "#define LVCSC_STOP_SEC_VCC_CALIBRATION" + } + } + }, + "includedCommonFiles": [ + "tl_basetypes", + "tl_types" + ] +} diff --git a/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/conandata.yml b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/conandata.yml new file mode 100644 index 0000000..4d89dfe --- /dev/null +++ b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/conandata.yml @@ -0,0 +1,38 @@ +version: + minimum: "8.4.0" + tag_prefix: "zcla_lvcsc-" + +# Organizational data relating to the module +# For VCC internal teams the string shall have the format: VCC/[Solution]/[ART]/[TEAM] +organization: "DUMMY VCC" + +# Module maintainer +maintainer: "dummy@volvocars.com" + +# Module maintainer peers +peers: + - "Dummy, John " + - "DummyTwo, John " + +# ID of the Generic Product Module(GMP) in CarWeaver that this sw-module belongs to. +generic_product_module: "GPM-37" + +# For each execution environment where the module is integrated, add an entry with the +# name of the execution environment and an integer that indicates the SW package the module +# contributes to. The name of the execution environment shall be the same as the name of the +# ECU in CarWeaver, but in lower case. The SW package id shall be the id assigned to your +# sw module in the sw-package-ledger. +sw_package_ids: + zcla: 913 + +# Link to SWAD in gerrit or gitlab repository. +# Link must contain the commit hash, i.e. link to a specific revision of your SWAD. +swad: https://dummy.volvocars.biz/dummy.md" + +swdd: "${artifact_uri}/DocGen" + +#change_log: "${artifact_uri}/doc/changelog.txt" + +regulatory-requirements: + - "RR-1" + diff --git a/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/conanfile.py b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/conanfile.py new file mode 100644 index 0000000..cfeac09 --- /dev/null +++ b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/conanfile.py @@ -0,0 +1,18 @@ +from conan import ConanFile + + +# recipe inherits properties from the class defined in the baseline +class ConanRecipe(ConanFile): + name = "ZCLA_LVCSC" + use_git_tag_version = True + url = "https://dummy.volvocars.net/admin/repos/dummy" + python_requires = "baseline_for_zc/1.0.0@vcc-tools/stable" + python_requires_extend = "baseline_for_zc.ConanPybuild" + config_repo = "config_zcla/[~1.0]@VCC-tools/stable" + default_user = "VCC-modules" + default_channel = "stable" + project = "ZC/ZCLA_LVCSC" + config_file = "ProjectCfg.json" + src_dir = "src" + interface_dir = "interface" + create_sil = "swc" # options: "composition_swc" | "swc" diff --git a/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/conf.local/gcc_conf.json b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/conf.local/gcc_conf.json new file mode 100644 index 0000000..308c618 --- /dev/null +++ b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/conf.local/gcc_conf.json @@ -0,0 +1,20 @@ +{ + "files": ["../output/bin/lvcsc.o"], + "directories": [], + "filters": { + "static": [ + "_GLOBAL_OFFSET_TABLE_", + "main" + ], + "regex": [ + { + "type": "exclusive", + "expression": "__(?:pre|f|)init?_array_.*" + }, + { + "type": "exclusive", + "expression": "Rte_CData_LVCSC_.*" + } + ] + } +} diff --git a/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/conf.local/nvm_structs.json b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/conf.local/nvm_structs.json new file mode 100644 index 0000000..591aba8 --- /dev/null +++ b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/conf.local/nvm_structs.json @@ -0,0 +1,90 @@ +[ + { + "name": "NVM_LIST_8", + "allowed_datatypes": [ + "Bool", + "UInt8", + "Int8" + ], + "size": 20, + "instanceName": "nvm_list_8", + "default_datatype": "UInt8", + "includeStop": "", + "includeStart": "", + "persistent": false, + "signals": [] + }, + { + "name": "NVM_LIST_8_PER", + "allowed_datatypes": [ + "Bool", + "UInt8", + "Int8" + ], + "size": 20, + "instanceName": "nvm_list_8_per", + "default_datatype": "UInt8", + "includeStop": "", + "includeStart": "", + "persistent": true, + "signals": [] + }, + { + "name": "NVM_LIST_16", + "allowed_datatypes": [ + "UInt16", + "Int16" + ], + "size": 5, + "instanceName": "nvm_list_16", + "default_datatype": "UInt16", + "includeStop": "", + "includeStart": "", + "persistent": false, + "signals": [] + }, + { + "name": "NVM_LIST_16_PER", + "allowed_datatypes": [ + "UInt16", + "Int16" + ], + "size": 5, + "instanceName": "nvm_list_16_per", + "default_datatype": "UInt16", + "includeStop": "", + "includeStart": "", + "persistent": true, + "signals": [] + }, + { + "name": "NVM_LIST_32", + "allowed_datatypes": [ + "Float32", + "UInt32", + "Int32" + ], + "size": 5, + "instanceName": "nvm_list_32", + "default_datatype": "UInt32", + "includeStop": "", + "includeStart": "", + "persistent": false, + "signals": [] + }, + { + "name": "NVM_LIST_32_PER", + "allowed_datatypes": [ + "Float32", + "UInt32", + "Int32" + ], + "size": 5, + "instanceName": "nvm_list_32_per", + "default_datatype": "UInt32", + "includeStop": "", + "includeStart": "", + "persistent": true, + "signals": [] + } +] \ No newline at end of file diff --git a/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/conf.local/rasters.json b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/conf.local/rasters.json new file mode 100644 index 0000000..c9397b1 --- /dev/null +++ b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/conf.local/rasters.json @@ -0,0 +1,13 @@ +{ + "SampleTimes": { + "VcExt10ms": 0.01 + }, + "VcExt10ms": [ + "VcDebug", + "VcDebugSafe", + "VcTestRx", + "VcTestTx", + "VcDebugOutput", + "VcDebugOutputSafe" + ] +} diff --git a/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/interface/McLvcSafe_GPA_24.arxml b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/interface/McLvcSafe_GPA_24.arxml new file mode 100644 index 0000000..0b4752e --- /dev/null +++ b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/interface/McLvcSafe_GPA_24.arxml @@ -0,0 +1,3 @@ + + + diff --git a/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/interface/McLvcSafe_GPA_24.json b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/interface/McLvcSafe_GPA_24.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/interface/McLvcSafe_GPA_24.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/src/LVCSC.c b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/src/LVCSC.c new file mode 100644 index 0000000..af13b49 --- /dev/null +++ b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/src/LVCSC.c @@ -0,0 +1,144 @@ + +#include "Rte_LVCSC.h" +#include "calibration_interface_LVCSC.h" +#include "VcDummy_spm.h" + + +/********************************************************************************************************************** + * DO NOT CHANGE THIS COMMENT! << Start of include and declaration area >> DO NOT CHANGE THIS COMMENT! + * Symbol: Includefunction + *********************************************************************************************************************/ +#include "VcExtVar.h" +#include "VcExtVarSafe.h" +#include "VcExt10ms.h" +#include "VcExtINI.h" +#include "vcc_nvm_struct.h" + +/* RTE read function declarations. */ +/* VcInpBcmdSigCdng */ +void Read_Dummy_DummyProperty_DummySignal(void); + + +/* RTE write function declarations. */ + +/* VcOutpBrkSysSigCdng */ +void Write_Dummy_DummyProperty_DummySignal(void); + +/********************************************************************************************************************** + * DO NOT CHANGE THIS COMMENT! << End of include and declaration area >> DO NOT CHANGE THIS COMMENT! + *********************************************************************************************************************/ + +#define LVCSC_START_SEC_VCC_RUN +#include "LVCSC_MemMap.h" +/********************************************************************************************************************** +/********************************************************************************************************************** + * DO NOT CHANGE THIS COMMENT! << Start of documentation area >> DO NOT CHANGE THIS COMMENT! + * Symbol: MainFunction_doc + *********************************************************************************************************************/ + + +/********************************************************************************************************************** + * DO NOT CHANGE THIS COMMENT! << End of documentation area >> DO NOT CHANGE THIS COMMENT! + *********************************************************************************************************************/ + +FUNC(void, LVCSC_VCC_RUN) AR_LVCSC_VcExt10ms(void) +{ +/********************************************************************************************************************** + * DO NOT CHANGE THIS COMMENT! << Start of runnable implementation >> DO NOT CHANGE THIS COMMENT! + * Symbol: MainFunction + *********************************************************************************************************************/ + + /* Read input data from RTE, store in SPM insignal variables. */ + Read_Dummy_DummyProperty_DummySignal(); + + + /* Write output data to RTE, load from SPM outsignal variables. */ + Write_Dummy_DummyProperty_DummySignal(); + +/********************************************************************************************************************** + * DO NOT CHANGE THIS COMMENT! << End of runnable implementation >> DO NOT CHANGE THIS COMMENT! + *********************************************************************************************************************/ +} +#define LVCSC_STOP_SEC_VCC_RUN +#include "LVCSC_MemMap.h" + + +#define LVCSC_START_SEC_VCC_RUN +#include "LVCSC_MemMap.h" +/********************************************************************************************************************** + * DO NOT CHANGE THIS COMMENT! << Start of function definition area >> DO NOT CHANGE THIS COMMENT! + * Symbol: Definefunction + *********************************************************************************************************************/ + +/* RTE read function definitions. */ +void Read_Dummy_DummyProperty_DummySignal(void){ + return 0; +} + + +void Write_Dummy_DummyProperty_DummySignal(void){ + + return 0; +} + +/********************************************************************************************************************** + * DO NOT CHANGE THIS COMMENT! << End of function definition area >> DO NOT CHANGE THIS COMMENT! + *********************************************************************************************************************/ +#define LVCSC_STOP_SEC_VCC_RUN +#include "LVCSC_MemMap.h" + +#define LVCSC_START_SEC_VCC_RUN +#include "LVCSC_MemMap.h" + +void AR_LVCSC_VcExtINI(void) +{ +/********************************************************************************************************************** + * DO NOT CHANGE THIS COMMENT! << Start of function initialization area >> DO NOT CHANGE THIS COMMENT! + * Symbol: InitFunction + *********************************************************************************************************************/ + + LVCSC_VcNvmInit(); + LVCSC_VcExtINI(); + +/********************************************************************************************************************** + * DO NOT CHANGE THIS COMMENT! << End of function initialization area >> DO NOT CHANGE THIS COMMENT! + *********************************************************************************************************************/ +} +#define LVCSC_STOP_SEC_VCC_RUN +#include "LVCSC_MemMap.h" + +#define LVCSC_START_SEC_VCC_RUN +#include "LVCSC_MemMap.h" + +void AR_LVCSC_ZcCalibrationStep(void) +{ +/********************************************************************************************************************** + * DO NOT CHANGE THIS COMMENT! << Start of Calibration main area >> DO NOT CHANGE THIS COMMENT! + * Symbol: CalibrationFunction + *********************************************************************************************************************/ + LVCSC_ZcCalibrationStep(); + +/********************************************************************************************************************** + * DO NOT CHANGE THIS COMMENT! << End of Calibration area >> DO NOT CHANGE THIS COMMENT! + *********************************************************************************************************************/ +} +#define LVCSC_STOP_SEC_VCC_RUN +#include "LVCSC_MemMap.h" + +#define LVCSC_START_SEC_VCC_RUN +#include "LVCSC_MemMap.h" + +void AR_LVCSC_ZcCalibrationInit(void) +{ +/********************************************************************************************************************** + * DO NOT CHANGE THIS COMMENT! << Start of Calibration main area >> DO NOT CHANGE THIS COMMENT! + * Symbol: CalibrationFunction + *********************************************************************************************************************/ + LVCSC_ZcCalibrationInit(); + +/********************************************************************************************************************** + * DO NOT CHANGE THIS COMMENT! << End of Calibration area >> DO NOT CHANGE THIS COMMENT! + *********************************************************************************************************************/ +} +#define LVCSC_STOP_SEC_VCC_RUN +#include "LVCSC_MemMap.h" diff --git a/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/src/whitelist.csv b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/src/whitelist.csv new file mode 100644 index 0000000..4c2c21f --- /dev/null +++ b/test_data/test_repo/Projects/ZC/ZCLA_LVCSC/src/whitelist.csv @@ -0,0 +1,7 @@ +portname;portinterface;swc +LVCSC_NVM_LIST_8;/PortInterface/LVCSC_NVM_LIST_8;LVCSC +LVCSC_NVM_LIST_16;/PortInterface/LVCSC_NVM_LIST_16;LVCSC +LVCSC_NVM_LIST_32;/PortInterface/LVCSC_NVM_LIST_32;LVCSC +LVCSC_NVM_LIST_8_PER;/PortInterface/LVCSC_NVM_LIST_8_PER;LVCSC +LVCSC_NVM_LIST_16_PER;/PortInterface/LVCSC_NVM_LIST_16_PER;LVCSC +LVCSC_NVM_LIST_32_PER;/PortInterface/LVCSC_NVM_LIST_32_PER;LVCSC \ No newline at end of file diff --git a/test_data/test_repo/resources/static_code/CSPCoreAPITL/VcCoreSupplierAbstraction.h b/test_data/test_repo/resources/static_code/CSPCoreAPITL/VcCoreSupplierAbstraction.h new file mode 100644 index 0000000..647a37b --- /dev/null +++ b/test_data/test_repo/resources/static_code/CSPCoreAPITL/VcCoreSupplierAbstraction.h @@ -0,0 +1,21 @@ +#ifndef CORESUPPLIERABSTRACTION_H +#define CORESUPPLIERABSTRACTION_H + +/***************************/ +/* Include Files */ +/***************************/ +#include "tl_types.h" + +/***************************/ +/* Glue macro defintions */ +/***************************/ + +/***************************/ +/* Prototype Declarations */ +/***************************/ + +#endif + +/*----------------------------------------------------------------------------*\ + END OF FILE +\*----------------------------------------------------------------------------*/ diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_CAL_ASIL_A_END.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_CAL_ASIL_A_END.h new file mode 100644 index 0000000..af5b16d --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_CAL_ASIL_A_END.h @@ -0,0 +1,2 @@ +#define CVC +#include "cvc_pragma.h" \ No newline at end of file diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_CAL_ASIL_A_START.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_CAL_ASIL_A_START.h new file mode 100644 index 0000000..e0bdd07 --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_CAL_ASIL_A_START.h @@ -0,0 +1,2 @@ +#define CVCCAL +#include "cvc_pragma.h" diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_CAL_ASIL_B_END.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_CAL_ASIL_B_END.h new file mode 100644 index 0000000..af5b16d --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_CAL_ASIL_B_END.h @@ -0,0 +1,2 @@ +#define CVC +#include "cvc_pragma.h" \ No newline at end of file diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_CAL_ASIL_B_START.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_CAL_ASIL_B_START.h new file mode 100644 index 0000000..e0bdd07 --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_CAL_ASIL_B_START.h @@ -0,0 +1,2 @@ +#define CVCCAL +#include "cvc_pragma.h" diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_CAL_END.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_CAL_END.h new file mode 100644 index 0000000..979c873 --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_CAL_END.h @@ -0,0 +1,2 @@ +#define CVC +#include "cvc_pragma.h" diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_CAL_START.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_CAL_START.h new file mode 100644 index 0000000..e0bdd07 --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_CAL_START.h @@ -0,0 +1,2 @@ +#define CVCCAL +#include "cvc_pragma.h" diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_CODE_ASIL_A_END.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_CODE_ASIL_A_END.h new file mode 100644 index 0000000..979c873 --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_CODE_ASIL_A_END.h @@ -0,0 +1,2 @@ +#define CVC +#include "cvc_pragma.h" diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_CODE_ASIL_A_START.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_CODE_ASIL_A_START.h new file mode 100644 index 0000000..efaf561 --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_CODE_ASIL_A_START.h @@ -0,0 +1,2 @@ +#define CVCCODE +#include "cvc_pragma.h" diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_CODE_ASIL_B_END.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_CODE_ASIL_B_END.h new file mode 100644 index 0000000..af5b16d --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_CODE_ASIL_B_END.h @@ -0,0 +1,2 @@ +#define CVC +#include "cvc_pragma.h" \ No newline at end of file diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_CODE_ASIL_B_START.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_CODE_ASIL_B_START.h new file mode 100644 index 0000000..979c873 --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_CODE_ASIL_B_START.h @@ -0,0 +1,2 @@ +#define CVC +#include "cvc_pragma.h" diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_CODE_END.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_CODE_END.h new file mode 100644 index 0000000..af5b16d --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_CODE_END.h @@ -0,0 +1,2 @@ +#define CVC +#include "cvc_pragma.h" \ No newline at end of file diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_CODE_START.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_CODE_START.h new file mode 100644 index 0000000..24dffcf --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_CODE_START.h @@ -0,0 +1,2 @@ +#define CVCCODE +#include "cvc_pragma.h" \ No newline at end of file diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_CONST_ASIL_A_END.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_CONST_ASIL_A_END.h new file mode 100644 index 0000000..af5b16d --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_CONST_ASIL_A_END.h @@ -0,0 +1,2 @@ +#define CVC +#include "cvc_pragma.h" \ No newline at end of file diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_CONST_ASIL_A_START.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_CONST_ASIL_A_START.h new file mode 100644 index 0000000..efaf561 --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_CONST_ASIL_A_START.h @@ -0,0 +1,2 @@ +#define CVCCODE +#include "cvc_pragma.h" diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_CONST_ASIL_B_END.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_CONST_ASIL_B_END.h new file mode 100644 index 0000000..af5b16d --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_CONST_ASIL_B_END.h @@ -0,0 +1,2 @@ +#define CVC +#include "cvc_pragma.h" \ No newline at end of file diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_CONST_ASIL_B_START.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_CONST_ASIL_B_START.h new file mode 100644 index 0000000..979c873 --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_CONST_ASIL_B_START.h @@ -0,0 +1,2 @@ +#define CVC +#include "cvc_pragma.h" diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_CONST_END.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_CONST_END.h new file mode 100644 index 0000000..af5b16d --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_CONST_END.h @@ -0,0 +1,2 @@ +#define CVC +#include "cvc_pragma.h" \ No newline at end of file diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_CONST_START.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_CONST_START.h new file mode 100644 index 0000000..24dffcf --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_CONST_START.h @@ -0,0 +1,2 @@ +#define CVCCODE +#include "cvc_pragma.h" \ No newline at end of file diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_DISP_ASIL_A_END.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_DISP_ASIL_A_END.h new file mode 100644 index 0000000..af5b16d --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_DISP_ASIL_A_END.h @@ -0,0 +1,2 @@ +#define CVC +#include "cvc_pragma.h" \ No newline at end of file diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_DISP_ASIL_A_START.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_DISP_ASIL_A_START.h new file mode 100644 index 0000000..0645d2e --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_DISP_ASIL_A_START.h @@ -0,0 +1,2 @@ +#define CVCDISP +#include "cvc_pragma.h" \ No newline at end of file diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_DISP_ASIL_B_END.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_DISP_ASIL_B_END.h new file mode 100644 index 0000000..af5b16d --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_DISP_ASIL_B_END.h @@ -0,0 +1,2 @@ +#define CVC +#include "cvc_pragma.h" \ No newline at end of file diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_DISP_ASIL_B_START.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_DISP_ASIL_B_START.h new file mode 100644 index 0000000..8a7196a --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_DISP_ASIL_B_START.h @@ -0,0 +1,2 @@ +#define CVCDISP +#include "cvc_pragma.h" diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_DISP_END.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_DISP_END.h new file mode 100644 index 0000000..af5b16d --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_DISP_END.h @@ -0,0 +1,2 @@ +#define CVC +#include "cvc_pragma.h" \ No newline at end of file diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_DISP_START.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_DISP_START.h new file mode 100644 index 0000000..0645d2e --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_DISP_START.h @@ -0,0 +1,2 @@ +#define CVCDISP +#include "cvc_pragma.h" \ No newline at end of file diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_NVM_END.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_NVM_END.h new file mode 100644 index 0000000..af5b16d --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_NVM_END.h @@ -0,0 +1,2 @@ +#define CVC +#include "cvc_pragma.h" \ No newline at end of file diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_NVM_P_END.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_NVM_P_END.h new file mode 100644 index 0000000..af5b16d --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_NVM_P_END.h @@ -0,0 +1,2 @@ +#define CVC +#include "cvc_pragma.h" \ No newline at end of file diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_NVM_P_START.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_NVM_P_START.h new file mode 100644 index 0000000..f2f392c --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_NVM_P_START.h @@ -0,0 +1,2 @@ +#define CVCNVMP +#include "cvc_pragma.h" \ No newline at end of file diff --git a/test_data/test_repo/resources/static_code/csp_headers/CVC_NVM_START.h b/test_data/test_repo/resources/static_code/csp_headers/CVC_NVM_START.h new file mode 100644 index 0000000..8375a1b --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/CVC_NVM_START.h @@ -0,0 +1,2 @@ +#define CVCNVM +#include "cvc_pragma.h" \ No newline at end of file diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CAL_ASIL_A_END.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CAL_ASIL_A_END.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CAL_ASIL_A_START.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CAL_ASIL_A_START.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CAL_ASIL_B_END.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CAL_ASIL_B_END.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CAL_ASIL_B_START.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CAL_ASIL_B_START.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CAL_END.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CAL_END.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CAL_EXT_END.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CAL_EXT_END.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CAL_EXT_START.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CAL_EXT_START.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CAL_MERG_END.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CAL_MERG_END.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CAL_MERG_START.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CAL_MERG_START.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CAL_START.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CAL_START.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CODE_ASIL_A_END.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CODE_ASIL_A_END.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CODE_ASIL_A_START.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CODE_ASIL_A_START.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CODE_ASIL_B_END.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CODE_ASIL_B_END.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CODE_ASIL_B_START.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CODE_ASIL_B_START.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CODE_END.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CODE_END.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CODE_START.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CODE_START.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CONST_ASIL_A_END.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CONST_ASIL_A_END.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CONST_ASIL_A_START.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CONST_ASIL_A_START.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CONST_ASIL_B_END.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CONST_ASIL_B_END.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CONST_ASIL_B_START.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CONST_ASIL_B_START.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CONST_END.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CONST_END.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CONST_EXT_END.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CONST_EXT_END.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CONST_EXT_START.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CONST_EXT_START.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CONST_MERG_END.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CONST_MERG_END.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CONST_MERG_START.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CONST_MERG_START.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CONST_START.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_CONST_START.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_DISP_ASIL_A_END.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_DISP_ASIL_A_END.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_DISP_ASIL_A_START.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_DISP_ASIL_A_START.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_DISP_ASIL_B_END.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_DISP_ASIL_B_END.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_DISP_ASIL_B_START.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_DISP_ASIL_B_START.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_DISP_END.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_DISP_END.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_DISP_START.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_DISP_START.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_END.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_END.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_NVM_END.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_NVM_END.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_NVM_P_END.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_NVM_P_END.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_NVM_P_START.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_NVM_P_START.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_NVM_START.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_NVM_START.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/PREDECL_START.h b/test_data/test_repo/resources/static_code/csp_headers/PREDECL_START.h new file mode 100644 index 0000000..e69de29 diff --git a/test_data/test_repo/resources/static_code/csp_headers/cvc_pragma.h b/test_data/test_repo/resources/static_code/csp_headers/cvc_pragma.h new file mode 100644 index 0000000..4973c6e --- /dev/null +++ b/test_data/test_repo/resources/static_code/csp_headers/cvc_pragma.h @@ -0,0 +1,19 @@ +#undef CVC_CAL +#undef CVC_CAL_EXT +#undef CVC_CAL_MERGEABLE +#undef CVC_CONST_EXT +#undef CVC_DISP +#undef CVC_DISP_NVM_P +#undef CVC_EXT +#undef EXTERN_GLOBAL_ALIAS + +#define CVC_CAL +#define CVC_CAL_EXT +#define CVC_CAL_MERGEABLE +#define CVC_CONST_EXT +#define CVC_DISP +#define CVC_DISP_NVM_P +#define CVC_EXT +#define EXTERN_GLOBAL_ALIAS + +#include "dummy_mem_map.h" diff --git a/test_data/test_repo/resources/static_code/csp_headers/dummy_mem_map.h b/test_data/test_repo/resources/static_code/csp_headers/dummy_mem_map.h new file mode 100644 index 0000000..e69de29 diff --git a/tests/powertrain_build/cnfg_files/test-repo/ConfigDocuments/BaseConfig.json b/tests/powertrain_build/cnfg_files/test-repo/ConfigDocuments/BaseConfig.json deleted file mode 100644 index 5c3fb6b..0000000 --- a/tests/powertrain_build/cnfg_files/test-repo/ConfigDocuments/BaseConfig.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "BaseConfigFileVersion": "0.2.1", - "ProjectInfo" : { - "deviceDomains": "./conf.local/DeviceDomains.json", - "serviceInterfaces": "./conf.local/ServiceInterfaces.json", - "didDefFile": "DIDIds_FullRange", - "didCarCom": "./output/CarCom_DIDDefs.csv", - "srcCodeDstDir": "./output/SourceCode", - "reportDstDir": "./output/Reports", - "logDstDir": "./output/logs", - "configDir": "../../ConfigDocuments", - "interfaceCfgDir": "./Config/ActiveInterfaces", - "commonSrcDir": "../../Models/Common/pybuild_src", - "prjUnitSrcDir": "../../Models/*/Vc*/pybuild_src", - "prjUnitCfgDir": "../../Models/*/Vc*/pybuild_cfg", - "prjUnitMdlDir": "../../Models/*/Vc*", - "prjLocalDefs": "*_LocalDefs.h", - "prjCodeswitches": "SPM_Codeswitch_Setup*.csv", - "coreDummyFileName" : "VcCoreDummy", - "featureHeaderName": "VcCodeSwDefines.h", - "tsHeaderName": "VcUnitTsDefines.h", - "useGlobalConst" : "VcConst" - }, - "NvmConfig": { - "fileName" : "vcc_nvm_struct", - "baseNvmStructs" : "./conf.local/nvm_structs.json" - } -} diff --git a/tests/powertrain_build/cnfg_files/test-repo/Models/IF/VcTestRx/pybuild_cfg/VcTestRx.yaml b/tests/powertrain_build/cnfg_files/test-repo/Models/IF/VcTestRx/pybuild_cfg/VcTestRx.yaml deleted file mode 100644 index d108260..0000000 --- a/tests/powertrain_build/cnfg_files/test-repo/Models/IF/VcTestRx/pybuild_cfg/VcTestRx.yaml +++ /dev/null @@ -1,514 +0,0 @@ -######################################################## -# -# Service for input values of app to VcTestRx model -# -# -######################################################## - -service: - ClimateAndThermalControlInternal: - properties: - - ControlRequests: - - insignal: yVcReq_B_MaxDefOn - property: enable_max_defroster - VehicleModesProvider: - properties: - - UsageModeAvailable: - - insignal: yVcVmp_B_VehModAvl - property: UsageModeAvailableIsActivated - - UsageModeAwake: - - insignal: yVcVmp_B_VehModAwake - property: UsageModeAwakeIsActivated - - UsageModeConvenience: - - insignal: yVcVmp_B_VehModConv - property: UsageModeConvenienceIsActivated - - UsageModeDriving: - - insignal: yVcVmp_B_VehModDrv - property: UsageModeDrivingIsActivated - - UsageModeMovable: - - insignal: yVcVmp_B_VehModMovable - property: UsageModeMovableIsActivated - # - CarMode: - # - insignal: sVcVmp_Enm_CarMode - # property: CarMode - # - CarModeSubtype: # <-- Create a new Enum for this one, it is not same as CarMode - # - insignal: sVcVmp_Enm_CarModeSubtype - # property: Subtype - - CrashMode: - - insignal: yVcVmp_B_CrashMod - property: CrashModeIsActivated - VehicleMotionState: - properties: - - VelocityLongitudinal: - - insignal: sVcVms_v_VehSpdLgt - property: nominal.value - - insignal: sVcVms_Enm_VehSpdLgtQf - property: nominal.quality -######################################################## -# -# Direct connection for input values of app to VcTestRx model -# From HALs -# -######################################################## -hal: - hal-hvec-thermal-properties: - - ClimatizationEnergyRequest: - - insignal: sVcHvec_E_HvBattClimaEgyReq - - ClimatizationPrioritizationRequest: - - insignal: sVcHvec_D_HvBattClimaPrioReq - - ClimatizationPowerEstimation: - - insignal: sVcHvec_Pw_HvBattClimaPwrEstimn - - AllowedCoolingEnergy: - - insignal: sVcHvec_E_HvBattCoolgEgyAllwd - - AllowedCoolingPower: - - insignal: sVcHvec_Pw_HvBattCoolgPwrAllwd - - CoolingPowerRequest: - - insignal: sVcHvec_Pw_HvBattCoolgPwrReq - - AllowedHeatingEnergy: - - insignal: sVcHvec_E_HvBattHeatgEgyAllwd - - AllowedHeatingPower: - - insignal: sVcHvec_Pw_HvBattHeatgPwrAllwd - - HeatingPowerRequest: - - insignal: sVcHvec_Pw_HvBattHeatgPwrReq - - MinimumFlowRequest: - - insignal: sVcHvec_Q_HvBattMinFlowReq - # - CoolantTemperatureSensorStatus: - # - insignal: sVcHvec_Enm_HvBattCooltTSnsrSts - - CoolingPowerNow: - - insignal: sVcHvec_Pw_HvBattCoolgPwrEstimn - - CoolingPowerNext: - - insignal: sVcHvec_Pw_HvBattCoolgPwrPred - - CoolingPowerTime: - - insignal: sVcHvec_t_HvBattCoolgPwrTi - - CoolingPowerTransition: - - insignal: sVcHvec_Pw_HvBattCoolgPwrTran - - HeatingPowerNow: - - insignal: sVcHvec_Pw_HvBattHeatgPwrEstimn - - HeatingPowerNext: - - insignal: sVcHvec_Pw_HvBattHeatgPwrPred - - HeatingPowerTime: - - insignal: sVcHvec_t_HvBattHeatgPwrTi - - HeatingPowerTransition: - - insignal: sVcHvec_Pw_HvBattHeatgPwrTran - - MaxTemperature: - - insignal: sVcHvec_Te_HvBattTMax - - MinTemperature: - - insignal: sVcHvec_Te_HvBattTMin - - AverageTemperature: - - insignal: sVcHvec_Te_HvBattTAvg - # needed? - # electrical_energy_coordinator: - # - PowerLimitClimate: - # - insignal: sVcHlcm_Enm_HvDcDcMod - - hal-hvec-electrical-properties: - - Voltage: - - insignal: sVcHvec_U_HvBattU - - Current: - - insignal: sVcHvec_I_HvBattI - # - DynamicVoltageMaxLimit: - # - insignal: sVcHvec_U_DynamicVoltageMaxLimit - # - DynamicVoltageMinLimit: - # - insignal: sVcHvec_U_DynamicVoltageMinLimit - # - CurrentLimit: - # - insignal: sVcHvec_I_CurrentLimit - - # hal-ihfa: - # - CoolingRequest: - # - insignal: sVcIhfa_Enm_EmFrntCoolgReq - # - CoolantTemperature: - # - insignal: sVcIhfa_Te_EmIvtrFrntCooltT - # - DcCurrent: - # - insignal: sVcIhfa_I_EmIvtrFrntIDc - # - InverterTemperature: - # - insignal: sVcIhfa_Te_EmIvtrFrntT - # # - LimitationIndication: - # # - insignal: sVcIhfa_D_FrntLimInd - # # - OperatingMode: - # # - insignal: sVcIhfa_Enm_EmIvtrFrntMod - # - MotorTemperature: - # - insignal: sVcIhfa_Te_EmMotFrntT - # - Speed: - # - insignal: sVcIhfa_n_EmMotFrntSpd - # property: speed - # - TorqueAvailable: - # - insignal: sVcIhfa_Tq_EmMotFrntTqAvlMax - # property: max - # - insignal: sVcIhfa_Tq_EmMotFrntTqAvlMin - # property: min - # - DcVoltage: - # - insignal: sVcIhfa_U_EmIvtrFrntDcU - # - TorqueEstimated: - # - insignal: sVcIhfa_Tq_EmMotFrntTqEstimn - # property: torque - - # hal-ihra: - # # - CoolingRequest: - # # - insignal: sVcIhra_Enm_EmReCoolgReq - # - CoolantTemperature: - # - insignal: sVcIhra_Te_EmIvtrReCooltT - # - DcCurrent: - # - insignal: sVcIhra_I_EmIvtrReIDc - # - InverterTemperature: - # - insignal: sVcIhra_Te_EmIvtrReT - # # - LimitationIndication: - # # - insignal: sVcIhra_D_ReLimInd - # # - OperatingMode: - # # - insignal: sVcIhra_Enm_EmIvtrReMod - # - MotorTemperature: - # - insignal: sVcIhra_Te_EmMotReT - # - Speed: - # - insignal: sVcIhra_n_EmMotReSpd - # property: speed - # - TorqueAvailable: - # - insignal: sVcIhra_Tq_EmMotReTqAvlMax - # property: max - # - insignal: sVcIhra_Tq_EmMotReTqAvlMin - # property: min - # - DcVoltage: - # - insignal: sVcIhra_U_EmIvtrReDcU - # - TorqueEstimated: - # - insignal: sVcIhra_Tq_EmMotReTqEstimn - # property: torque - - hal-hvcc-monitor: - # - ChargerType: - # - insignal: sVcHvcc_Enm_HvChrgrTyp - # - ConnectionStatus: - # - insignal: sVcHvcc_Enm_HvChrgrCnctnSts - # - ChargingStatus: - # - insignal: sVcHvcc_Enm_HvChrgnSts - - Temperature: - - insignal: sVcHvcc_Te_HvChrgrT - - TimeToFullCharge: - - insignal: sVcHvcc_t_HvChrgTiToFull - - # hal-hvcc-requests: - # - CoolingPower: - # - insignal: sVcHvcc_Enm_HvChrgCoolgReq - - hal-hlcm-electrical-measurement: - - TransientPower: - - insignal: sVcHlcm_Pw_HvDcDcTraPwr - - CurrentOnLowVoltageSide: - - insignal: sVcHlcm_I_HvDcDcILv - - CurrentOnHighVoltageSide: - - insignal: sVcHlcm_I_HvDcDcIHv - - VoltageOnLowVoltageSide: - - insignal: sVcHlcm_U_HvDcDcULv - - VoltageOnHighVoltageSide: - - insignal: sVcHlcm_U_HvDcDcUHv - - # hal-hlcm-system-states: - # - OperationMode: - # - insignal: sVcHlcm_Enm_HvDcDcMod - # - CoolingFlowRequest: - # - insignal: sVcHlcm_Enm_HvDcDcCoolgFlowReq - # - FaultNotification: - # - insignal: sVcHlcm_Enm_HvDcDcFltSts - - # hal-hvec-contactor-status: - # - MainContactorStatus: - # - insignal: sVcHvec_Enm_MaiHvCntctSts - # - DCContactorStatus: - # - insignal: sVcHvec_Enm_HvDcDcCntctSts - -######################################################## -# -# Direct connection for input values of app to VcTestRx model -# From FIOC DP -# -######################################################## -##### FIOC 4/6.0.0 ####### -signals: - fioc: - - insignal: sVcFioc_Te_AmbTMecRimSnsr - property: AmbTMecRimSnsr - - insignal: sVcFioc_D_AmbTMecRimSnsrElecSts - property: AmbTMecRimSnsrElecSts - - insignal: sVcFioc_D_CircCnctVlvElecSts - property: CircCnctVlvElecSts - # - insignal: sVcFioc_D_CircCnctVlvSts - # property: CircCnctVlvSts - # - insignal: sVcFioc_D_CooltLvlElecSts - # property: CooltLvlElecSts - # - insignal: sVcFioc_D_CooltPmpDtElecCpbySts - # property: CooltPmpDtElecCpbySts - # - insignal: sVcFioc_D_CooltPmpHvBattCpbySts - # property: CooltPmpHvBattCpbySts - # - insignal: sVcFioc_D_CooltPmpInClimaCpbySts - # property: CooltPmpInClimaCpbySts - # - insignal: sVcFioc_X_CooltPmpSpdInCircClimaAct - # property: CooltPmpSpdInCircClimaAct - # - insignal: sVcFioc_X_CooltPmpSpdInCircDtElecAct - # property: CooltPmpSpdInCircDtElecAct - # - insignal: sVcFioc_X_CooltPmpSpdInHvBattCircAct - # property: CooltPmpSpdInHvBattCircAct - - insignal: sVcFioc_Te_CooltTAftHvac - property: CooltTAftHvac - - insignal: sVcFioc_D_CooltTAftHvacElecSts - property: CooltTAftHvacElecSts - - insignal: sVcFioc_Te_CooltTAftRadrDtElec - property: CooltTAftRadrDtElec - - insignal: sVcFioc_D_CooltTAftRadrDtElecSts - property: CooltTAftRadrDtElecSts - - insignal: sVcFioc_Te_CooltTAtHvBattOutl - property: CooltTAtHvBattOutl - - insignal: sVcFioc_D_CooltTAtHvBattOutlElecSts - property: CooltTAtHvBattOutlElecSts - - insignal: sVcFioc_Te_CooltTBfrRadrBypVlv - property: CooltTBfrRadrBypVlv - - insignal: sVcFioc_D_CooltTBfrRadrBypVlvElecSts - property: CooltTBfrRadrBypVlvElecSts -# EvaprVlvFrntElecSts -# EvaprVlvRearElecSts -# ExtdIntglAck - # - insignal: sVcFioc_D_FanCpbySts - # property: FanCpbySts - - insignal: sVcFioc_D_FanElecSts - property: FanElecSts - - insignal: sVcFioc_D_FanModSts - property: FanModSts - - insignal: sVcFioc_D_FanRlyElecSts - property: FanRlyElecSts - # - insignal: sVcFioc_D_FanRlySts - # property: FanRlySts - - insignal: sVcFioc_X_FanSpdAct - property: FanSpdAct - - insignal: sVcFioc_D_HvBattOnOffVlvElecSts - property: HvBattOnOffVlvElecSts - # - insignal: sVcFioc_D_HvBattOnOffVlvSts - # property: HvBattOnOffVlvSts - # - insignal: sVcFioc_X_PropVlvToHvBattAct - # property: PropVlvToHvBattAct -# HvCooltHeatrICns2 -# HvCooltHeatrSplyUForCtrlUnitVal2 -# HvCooltHeatrSts2 -# HvCooltWtrHeatrWtrTInIntk2 - - insignal: sVcFioc_Pw_HvHeatrPwrCns2 - property: HvHeatrPwrCns2 - - insignal: sVcFioc_Te_HvCooltWtrHeatrWtrTInOutl2 - property: HvCooltWtrHeatrWtrTInOutl2 -# HvHeatrPwrCns2 -# HvHeatrPwrCnsDes2 - - insignal: sVcFioc_p_PMedChillrOut - property: PMedChillrOut - - insignal: sVcFioc_p_PMedCmprOut - property: PMedCmprOut -# PMedChillrOutElecSts -# PMedCmprOutElecSts - # - insignal: sVcFioc_D_PropVlvToHvBattCpbySts - # property: PropVlvToHvBattCpbySts - # - insignal: sVcFioc_D_PropVlvToHvBattSts - # property: PropVlvToHvBattSts - - insignal: sVcFioc_D_RadrBypVlvElecSts - property: RadrBypVlvElecSts - # - insignal: sVcFioc_D_RadrBypVlvSts - # property: RadrBypVlvSts - # - insignal: sVcFioc_D_RlyForCoolgElecSts - # property: RlyForCoolgElecSts - # - insignal: sVcFioc_D_RlyForCoolgSts - # property: RlyForCoolgSts - # - insignal: sVcFioc_an_SplrShttrAgAct - # property: SplrShttrAgAct - # - insignal: sVcFioc_D_SplrShttrCpbySts - # property: SplrShttrCpbySts - # - insignal: sVcFioc_D_SplrShttrInfoSts - # property: SplrShttrInfoSts - - insignal: sVcFioc_D_StsOfCooltLvl - property: StsOfCooltLvl - - insignal: sVcFioc_Te_TMedChillrOut - property: TMedChillrOut - - insignal: sVcFioc_Te_TMedCmprOut - property: TMedCmprOut -# TMedChillrOutElecSts -# TMedCmprOutElecSts -# CmprDiagStsExtdEepErr -# CmprDiagStsExtdInpOverIErr -# CmprDiagStsExtdMemErr -# CmprDiagStsExtdMotOverIErr -# CmprDiagStsExtdOverTErr -# CmprDiagStsExtdStallErr -# CmprDiagStsExtdSwErr -# CmprDiagcStsCmprCmprSpdErr -# CmprDiagcStsCmprCtrlrErr -# CmprDiagcStsCmprHvSnsr1 -# CmprDiagcStsCmprHvSnsrI -# CmprDiagcStsCmprHvSnsrICrct -# CmprDiagcStsCmprHvSplyErr -# CmprDiagcStsCmprStartUpErr -# CmprDiagcStsCmprT1 -# CmprDiagcStsCmprT2 -# CmprDiagcStsCmprTOperErr -# CmprDiagcStsCmprWdgErr - ccmb: - - insignal: sVcCcmb_X_AirFlapPosnActForCentrForFirstLe - property: AirFlapPosnActForCentrForFirstLe - - insignal: sVcCcmb_X_AirFlapPosnActForDefrst1 - property: AirFlapPosnActForDefrst1 - - insignal: sVcCcmb_X_AirFlapPosnActForFlrForFirstRiLe - property: AirFlapPosnActForFlrForFirstRiLe - - insignal: sVcCcmb_X_AirFlapPosnActForFlrForSecRiLe - property: AirFlapPosnActForFlrForSecRiLe - - insignal: sVcCcmb_X_AirFlapPosnActForOsa1 - property: AirFlapPosnActForOsa1 - - insignal: sVcCcmb_X_AirFlapPosnActForRecirc1 - property: AirFlapPosnActForRecirc1 - - insignal: sVcCcmb_X_AirFlapPosnActForSideForFirstLe - property: AirFlapPosnActForSideForFirstLe - - insignal: sVcCcmb_X_AirFlapPosnActForVentCentrForFirstRi - property: AirFlapPosnActForVentCentrForFirstRi - - insignal: sVcCcmb_X_AirFlapPosnActForVentForSecRiLe - property: AirFlapPosnActForVentForSecRiLe - - insignal: sVcCcmb_X_AirFlapPosnActForVentSideForFirstRi - property: AirFlapPosnActForVentSideForFirstRi - - insignal: sVcCcmb_X_AirFlapPosnTActForFirstLe - property: AirFlapPosnTActForFirstLe - - insignal: sVcCcmb_X_AirFlapPosnTActForFirstRi - property: AirFlapPosnTActForFirstRi - - insignal: sVcCcmb_X_AirFlapPosnTActForSecLe - property: AirFlapPosnTActForSecLe - - insignal: sVcCcmb_X_AirFlapPosnTActForSecRi - property: AirFlapPosnTActForSecRi - -signal_groups: - fioc: - - CmprRunSts: - - property: CmprRunStsCmprIPha - insignal: sVcFioc_I_CmprRunStsCmprIPha - - property: CmprRunStsCmprSpd - insignal: sVcFioc_n_CmprRunStsCmprSpd - - property: CmprRunStsCmprT - insignal: sVcFioc_Te_CmprRunStsCmprT - - property: CmprRunStsCmprU - insignal: sVcFioc_U_CmprRunStsCmprU - - property: CmprRunStsCmprI - insignal: sVcFioc_I_CmprRunStsCmprI -# CmprRunStsCmprSts -# FuHeatrSts0FuHeatrCmbAirFanErrSts -# FuHeatrSts0FuHeatrCmbDetnErrSts -# FuHeatrSts0FuHeatrDiagcSts -# FuHeatrSts0FuHeatrFuPmpErrSts -# FuHeatrSts0FuHeatrGlwPinAct -# FuHeatrSts0FuHeatrGlwPinErrSts -# FuHeatrSts0FuHeatrLockdSts -# FuHeatrSts0FuHeatrOperErrSts -# FuHeatrSts0FuHeatrSnsrCooltTErrSts -# FuHeatrSts0FuHeatrSnsrTHiErrSts -# FuHeatrSts0FuHeatrStsSho -# FuHeatrSts0FuHeatrUpSts -# FuHeatrSts0FuHeatrWtrT -# HvCooltHeatrProtnOfSelfTmp2HwProtn -# HvCooltHeatrProtnOfSelfTmp2Ovrheatg -# HvCooltHeatrProtnOfSelfTmp2ProtnOfSelfTmp -# HvCooltHeatrProtnOfSelfTmp2ProtnOfSelfTmpResd -# HvCooltHeatrSnsrFlt2CooltTInSnsrFlt -# HvCooltHeatrSnsrFlt2CooltTOutSnsrFlt -# HvCooltHeatrSnsrFlt2ResdForSnsrFlt -# HvCooltHeatrSnsrFlt2TInMtrlSnsrFlt -# HvCooltHeatrSrvRqrd2CircForDrvrShoOrOpen -# HvCooltHeatrSrvRqrd2ICnsOutOfRng -# HvCooltHeatrSrvRqrd2MemErr -# HvCooltHeatrSrvRqrd2SrvRqrd -# HvCooltHeatrSrvRqrd2SrvRqrdResd -# HvCooltHeatrWarn2CooltTOutOfRng -# HvCooltHeatrWarn2FltInCom -# HvCooltHeatrWarn2FltPrsnt -# HvCooltHeatrWarn2FltPrsntResd -# HvCooltHeatrWarn2HvOutOfRng -# HvCooltHeatrWarn2ULoOutOfRng - - ElecExpVlvCtrl: - - insignal: sVcFioc_D_ElecExpVlvCtrlErrStsForChillrVlv - property: ElecExpVlvCtrlErrStsForChillrVlv - - insignal: sVcFioc_D_ElecExpVlvCtrlIninStsForChillrVlv - property: ElecExpVlvCtrlIninStsForChillrVlv - - insignal: yVcFioc_B_ElecExpVlvCtrlMotStallStsForChillrVlv - property: ElecExpVlvCtrlMotStallStsForChillrVlv - - insignal: sVcFioc_X_ElecExpVlvCtrlPsnActForChillrVlv - property: ElecExpVlvCtrlPsnActForChillrVlv - - insignal: yVcFioc_B_ElecExpVlvCtrlRunsStsForChillrVlv - property: ElecExpVlvCtrlRunsStsForChillrVlv - - insignal: sVcFioc_D_ElecExpVlvCtrlTWarnStsForChillrVlv - property: ElecExpVlvCtrlTWarnStsForChillrVlv - - insignal: sVcFioc_D_ElecExpVlvCtrlUerrStsForChillrVlv - property: ElecExpVlvCtrlUerrStsForChillrVlv - - ##### THESE SIGNALS DOES NOT EXIST IN THE FIOC-DP YET? ################ - # signal_groups: - # fioc: - # - CooltPmpInHvBattCircSts: - # - insignal: sVcFioc_X_CooltPmpInHvBattCircSts - # property: CooltPmpInHvBattCircSts - # - CooltPmpInDtElecSts: - # - insignal: sVcFioc_D_CooltPmpInDtElecSts - # property: CooltPmpInDtElecSts - # - CltPmpInCircClimaSts: - # - insignal: sVcFioc_D_CltPmpInCircClimaSts - # property: CltPmpInCircClimaSts - # - PropVlvToHvBattFltSts: - # - insignal: sVcFioc_D_PropVlvToHvBattFltSts - # property: PropVlvToHvBattFltSts - # - SplrShttrSts: - # - insignal: sVcFioc_D_SplrShttrSts - # property: SplrShttrSts - # - SplrShttrFltSts: - # - insignal: sVcFioc_D_SplrShttrFltSts - # property: SplrShttrFltSts - # - SplrShttrAgAct: - # - ccmb: - - EvaprTFrnt2: - - insignal: sVcCcmb_Te_EvapTFrnt - property: EvaprTFrnt2EvaprTFrnt - - insignal: yVcCcmb_B_EvapTFrntQf - property: EvaprTFrnt2EvaprTQf - - MtrlSnsrT: - - insignal: sVcCcmb_Te_MtrlSnsrT - property: MtrlSnsrTMtrlSnsrT - - insignal: yVcCcmb_B_MtrlSnsrTQf - property: MtrlSnsrTFacQly - - HvacAirTForHeatrFrnt2: - - insignal: sVcCcmb_Te_HvacAirTForHeatrFrnt - property: HvacAirTForHeatrFrnt2HvacAirTForHeatrFrnt - - insignal: yVcCcmb_B_HvacAirTForHeatrFrntQf - property: HvacAirTForHeatrFrnt2HvacAirTForHeatrFrntQf - - HvacAirTForRowFirstAtFlrRi2: - - insignal: sVcCcmb_Te_HvacAirTForRowFirstAtFlrRi - property: HvacAirTForRowFirstAtFlrRi2HvacAirTForRowFirstAtFlrRi - - insignal: yVcCcmb_B_HvacAirTForRowFirstAtFlrRiQf - property: HvacAirTForRowFirstAtFlrRi2HvacAirTForRowFirstAtFlrRiQf - - HvacAirTForRowFirstAtVentLe2: - - insignal: sVcCcmb_Te_HvacAirTForRowFirstAtVentLe - property: HvacAirTForRowFirstAtVentLe2HvacAirTForRowFirstAtVentLe - - insignal: yVcCcmb_B_HvacAirTForRowFirstAtVentLeQf - property: HvacAirTForRowFirstAtVentLe2HvacAirTForRowFirstAtVentLeQf - - HvacAirTForRowFirstAtVentRi2: - - insignal: sVcCcmb_Te_HvacAirTForRowFirstAtVentRi - property: HvacAirTForRowFirstAtVentRi2HvacAirTForRowFirstAtVentRi - - insignal: yVcCcmb_B_HvacAirTForRowFirstAtVentRiQf - property: HvacAirTForRowFirstAtVentRi2HvacAirTForRowFirstAtVentRiQf - - HvacAirTForRowSecAtFlrLe: - - insignal: sVcCcmb_Te_HvacAirTForRowSecAtFlrLe - property: HvacAirTForRowSecAtFlrLeHvacAirTForRowSecAtFlrLe - - insignal: yVcCcmb_B_HvacAirTForRowSecAtFlrLeQf - property: HvacAirTForRowSecAtFlrLeQf - - HvacAirTForRowSecAtFlrRi: - - insignal: sVcCcmb_Te_HvacAirTForRowSecAtFlrRi - property: HvacAirTForRowSecAtFlrRiHvacAirTForRowSecAtFlrRi - - insignal: yVcCcmb_B_HvacAirTForRowSecAtFlrRiQf - property: HvacAirTForRowSecAtFlrRiQf - - HvacAirTForRowSecAtVentLe: - - insignal: sVcCcmb_Te_HvacAirTForRowSecAtVentLe - property: HvacAirTForRowSecAtVentLeHvacAirTForRowSecAtVentLe - - insignal: yVcCcmb_B_HvacAirTForRowSecAtVentLeQf - property: HvacAirTForRowSecAtVentLeQf - - HvacAirTForRowSecAtVentRi: - - insignal: sVcCcmb_Te_HvacAirTForRowSecAtVentRi - property: HvacAirTForRowSecAtVentRiHvacAirTForRowSecAtVentRi - - insignal: yVcCcmb_B_HvacAirTForRowSecAtVentRiQf - property: HvacAirTForRowSecAtVentRiQf - - HvacAirTForRowFirstAtFlrLe2: - - insignal: sVcCcmb_Te_HvacAirTForRowFirstAtFlrLe - property: HvacAirTForRowFirstAtFlrLe2HvacAirTForRowFirstAtFlrLe - - insignal: yVcCcmb_B_HvacAirTForRowFirstAtFlrLeQf - property: HvacAirTForRowFirstAtFlrLe2HvacAirTForRowFirstAtFlrLeQf diff --git a/tests/powertrain_build/cnfg_files/test-repo/Models/IF/VcTestRx/pybuild_cfg/config_VcTestRx.json b/tests/powertrain_build/cnfg_files/test-repo/Models/IF/VcTestRx/pybuild_cfg/config_VcTestRx.json deleted file mode 100644 index b051eef..0000000 --- a/tests/powertrain_build/cnfg_files/test-repo/Models/IF/VcTestRx/pybuild_cfg/config_VcTestRx.json +++ /dev/null @@ -1,7432 +0,0 @@ -{ - "version": "0.2.1", - "includes": [], - "integrity_level": "QM", - "outports": { - "sVcTestRx_Te_AmbTRaw": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out1", - "name": "sVcTestRx_Te_AmbTRaw", - "configs": "((ALWAYS_ACTIVE))", - "description": "Ambient Temperature Raw", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_MtrlSnsrT": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out2", - "name": "sVcTestRx_Te_MtrlSnsrT", - "configs": "((ALWAYS_ACTIVE))", - "description": "Material Temperature sensor", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestRx_B_VehModConv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out3", - "name": "yVcTestRx_B_VehModConv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Vehicle Mode convinience", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Pw_EmMotPwrLossEstimdFrnt": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out6", - "name": "sVcTestRx_Pw_EmMotPwrLossEstimdFrnt", - "configs": "((ALWAYS_ACTIVE))", - "description": "EM Motor Power Loss Estimated Front", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Pw_EmPwrAddlLossEstimdFrnt": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out8", - "name": "sVcTestRx_Pw_EmPwrAddlLossEstimdFrnt", - "configs": "((ALWAYS_ACTIVE))", - "description": "EM Power Additional Loss Estimated Front", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_EmIvtrFrntCooltT": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out9", - "name": "sVcTestRx_Te_EmIvtrFrntCooltT", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant temperature measured in the coolant inlet in inverter", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_EmIvtrFrntT": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out10", - "name": "sVcTestRx_Te_EmIvtrFrntT", - "configs": "((ALWAYS_ACTIVE))", - "description": "Inverter temperature measured in the inverter front", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_EmMotFrntT": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out11", - "name": "sVcTestRx_Te_EmMotFrntT", - "configs": "((ALWAYS_ACTIVE))", - "description": "The motor temperature measured at the windings in the electric motor", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Enm_EmFrntCoolgReq": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out12", - "name": "sVcTestRx_Enm_EmFrntCoolgReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Request for increased cooling power to both electric machine and inverter ", - "type": "EmCoolgReq", - "unit": "-,$EmCoolgReq", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Pw_EmIvtrPwrLossEstimdRe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out13", - "name": "sVcTestRx_Pw_EmIvtrPwrLossEstimdRe", - "configs": "((ALWAYS_ACTIVE))", - "description": "EM Inverter Power Loss Estimated Rear", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Pw_EmMotPwrLossEstimdRe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out14", - "name": "sVcTestRx_Pw_EmMotPwrLossEstimdRe", - "configs": "((ALWAYS_ACTIVE))", - "description": "EM Motor Power Loss Estimated Rear", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Pw_EmPwrAddlLossAvlRe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out15", - "name": "sVcTestRx_Pw_EmPwrAddlLossAvlRe", - "configs": "((ALWAYS_ACTIVE))", - "description": "EM Power Additional Loss Available Rear", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Pw_EmPwrAddlLossEstimdRe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out16", - "name": "sVcTestRx_Pw_EmPwrAddlLossEstimdRe", - "configs": "((ALWAYS_ACTIVE))", - "description": "EM Power Additional Loss Estimated Rear", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_EmIvtrReCooltT": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out17", - "name": "sVcTestRx_Te_EmIvtrReCooltT", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant temperature measured in the coolant inlet in inverter", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_EmIvtrReT": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out18", - "name": "sVcTestRx_Te_EmIvtrReT", - "configs": "((ALWAYS_ACTIVE))", - "description": "Inverter temperature measured in the inverter rear", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_EmMotReT": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out19", - "name": "sVcTestRx_Te_EmMotReT", - "configs": "((ALWAYS_ACTIVE))", - "description": "The motor temperature measured at the windings in the electric motor", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Enm_EmReCoolgReq": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out20", - "name": "sVcTestRx_Enm_EmReCoolgReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Request for increased cooling power to both electric machine and inverter", - "type": "EmCoolgReq", - "unit": "-,$EmCoolgReq", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_FanModSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out21", - "name": "sVcTestRx_D_FanModSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Fan Mode Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_FanCpbySts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out22", - "name": "sVcTestRx_D_FanCpbySts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Fan Error", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_FanSpdAct": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out23", - "name": "sVcTestRx_X_FanSpdAct", - "configs": "((ALWAYS_ACTIVE))", - "description": "Fan Speed Actual", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_StsOfCooltLvl": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out24", - "name": "sVcTestRx_D_StsOfCooltLvl", - "configs": "((ALWAYS_ACTIVE))", - "description": "Status Of Coolant Level", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_CooltTAftRadrDtElec": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out25", - "name": "sVcTestRx_Te_CooltTAftRadrDtElec", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Temperature After Radiator Drivetrain Electric", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_CooltTAftHvac": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out26", - "name": "sVcTestRx_Te_CooltTAftHvac", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Temperature After Hvac", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_CooltTBfrRadrBypVlv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out27", - "name": "sVcTestRx_Te_CooltTBfrRadrBypVlv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Temperature Before Radiator Bypass Valve", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_CooltTAtHvBattOutl": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out28", - "name": "sVcTestRx_Te_CooltTAtHvBattOutl", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Temperature At High Voltage Battery Outlet", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_FanElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out29", - "name": "sVcTestRx_D_FanElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Fan Electric Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_FanRlyElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out30", - "name": "sVcTestRx_D_FanRlyElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Fan Relay Electric Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_CircCnctVlvElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out31", - "name": "sVcTestRx_D_CircCnctVlvElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Circuit Connect Valve Electric Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_RadrBypVlvElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out32", - "name": "sVcTestRx_D_RadrBypVlvElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Radiator Bypass Valve Electric Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_HvBattOnOffVlvElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out33", - "name": "sVcTestRx_D_HvBattOnOffVlvElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "High Voltage Battery On Off Valve Electric Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_CooltTAftRadrDtElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out34", - "name": "sVcTestRx_D_CooltTAftRadrDtElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Temperature After Radiator Drivetrain Electric Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_CooltTAftHvacElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out35", - "name": "sVcTestRx_D_CooltTAftHvacElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Temperature After Hvac Electric Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_CooltTBfrRadrBypVlvElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out36", - "name": "sVcTestRx_D_CooltTBfrRadrBypVlvElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Temperature Before Radiator Bypass Valve Electric Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_CooltTAtHvBattOutlElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out37", - "name": "sVcTestRx_D_CooltTAtHvBattOutlElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Temperature At High Voltage Battery Outlet Electric Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_CooltLvlElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out38", - "name": "sVcTestRx_D_CooltLvlElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Level Electric Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_CooltPmpSpdInHvBattCircAct": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out39", - "name": "sVcTestRx_X_CooltPmpSpdInHvBattCircAct", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Pump Speed In High Voltage Battery Circuit Actual", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_CooltPmpInHvBattCircSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out40", - "name": "sVcTestRx_X_CooltPmpInHvBattCircSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Pump In High Voltage Battery Circuit Status", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_CooltPmpSpdInCircDtElecAct": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out41", - "name": "sVcTestRx_X_CooltPmpSpdInCircDtElecAct", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Pump Speed In Circuit Drivetrain Electric Actual", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_CooltPmpInDtElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out42", - "name": "sVcTestRx_D_CooltPmpInDtElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Pump In Drivetrain Electric Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_CooltPmpSpdInCircClimaAct": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out43", - "name": "sVcTestRx_X_CooltPmpSpdInCircClimaAct", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Pump Speed In Circuit Climatisation Actual", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_CltPmpInCircClimaSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out44", - "name": "sVcTestRx_D_CltPmpInCircClimaSts", - "configs": "((ALWAYS_ACTIVE))", - "description": " Pump In Circuit Climatisation Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_PropVlvToHvBattAct": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out45", - "name": "sVcTestRx_X_PropVlvToHvBattAct", - "configs": "((ALWAYS_ACTIVE))", - "description": "Proportional Valve To High Voltage Battery Actual", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_PropVlvToHvBattFltSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out46", - "name": "sVcTestRx_D_PropVlvToHvBattFltSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Proportional Valve To High Voltage Battery Fault Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_PropVlvToHvBattSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out47", - "name": "sVcTestRx_D_PropVlvToHvBattSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Proportional Valve To High Voltage Battery Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_SplrShttrSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out48", - "name": "sVcTestRx_D_SplrShttrSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Spoiler Shutter Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_SplrShttrFltSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out49", - "name": "sVcTestRx_D_SplrShttrFltSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Spoiler Shutter Fault Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_an_SplrShttrAgAct": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out50", - "name": "sVcTestRx_an_SplrShttrAgAct", - "configs": "((ALWAYS_ACTIVE))", - "description": "Spoiler Shutter Angle Actual", - "type": "Float32", - "unit": "deg", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Pw_EmPwrAddlLossAvlFrnt": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out5", - "name": "sVcTestRx_Pw_EmPwrAddlLossAvlFrnt", - "configs": "((ALWAYS_ACTIVE))", - "description": "EM Power Additional Loss Available Front", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Pw_EmIvtrPwrLossEstimdFrnt": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out7", - "name": "sVcTestRx_Pw_EmIvtrPwrLossEstimdFrnt", - "configs": "((ALWAYS_ACTIVE))", - "description": "EM Inverter Power Loss Estimated Front", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Pw_HvBattHeatgPwrAllwd": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out51", - "name": "sVcTestRx_Pw_HvBattHeatgPwrAllwd", - "configs": "((ALWAYS_ACTIVE))", - "description": "Allowed heating power of the high voltage battery. ", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Pw_HvBattHeatgPwrReq": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out52", - "name": "sVcTestRx_Pw_HvBattHeatgPwrReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Heating power request of the high voltage battery. Used to keep battery within the minimum operating temperature.", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_E_HvBattClimaEgyReq": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out53", - "name": "sVcTestRx_E_HvBattClimaEgyReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "High Voltage Battery Climatisation Energy Request", - "type": "Float32", - "unit": "Wh", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_HvBattClimaPrioReq": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out54", - "name": "sVcTestRx_D_HvBattClimaPrioReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "High Voltage Battery Climatisation Priority Request", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Pw_HvBattClimaPwrEstimn": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out55", - "name": "sVcTestRx_Pw_HvBattClimaPwrEstimn", - "configs": "((ALWAYS_ACTIVE))", - "description": "Climatization power estimation of the high voltage battery based on the flow of the coolant within the battery pack, the temperature of the coolant within the battery pack and specific heat capacity for the coolant.", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_E_HvBattCoolgEgyAllwd": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out56", - "name": "sVcTestRx_E_HvBattCoolgEgyAllwd", - "configs": "((ALWAYS_ACTIVE))", - "description": "High voltage battery allowed cooling energy. The limit is estimated based on min and max battery temperature and the thermal mass of the battery pack. Data is used as input for thermal coordinator to use the battery HW as thermal sink.", - "type": "Float32", - "unit": "Wh", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Pw_HvBattCoolgPwrAllwd": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out57", - "name": "sVcTestRx_Pw_HvBattCoolgPwrAllwd", - "configs": "((ALWAYS_ACTIVE))", - "description": "The cooling powers are derived from the respective energy allowed limitations and based on a calibratable time threshold.", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Pw_HvBattCoolgPwrReq": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out58", - "name": "sVcTestRx_Pw_HvBattCoolgPwrReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Cooling power request of the high voltage battery.", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_E_HvBattHeatgEgyAllwd": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out59", - "name": "sVcTestRx_E_HvBattHeatgEgyAllwd", - "configs": "((ALWAYS_ACTIVE))", - "description": "Allowed heating energy of the high voltage battery. Input to thermal coordinator to be able to use high voltage battery as thermal sink.", - "type": "Float32", - "unit": "Wh", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Q_HvBattMinFlowReq": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out60", - "name": "sVcTestRx_Q_HvBattMinFlowReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Minimum flow request of the high voltage battery. Request for coolant flow.", - "type": "Float32", - "unit": "l/min", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Enm_HvBattCooltTSnsrSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out61", - "name": "sVcTestRx_Enm_HvBattCooltTSnsrSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Status of the coolant temperature sensor. Something of a quality flag.", - "type": "HvBattSnsrSts", - "unit": "-,$HvBattSnsrSts", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Pw_HvBattCoolgPwrEstimn": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out62", - "name": "sVcTestRx_Pw_HvBattCoolgPwrEstimn", - "configs": "((ALWAYS_ACTIVE))", - "description": "Cooling power (thermal) for current heating need.", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Pw_HvBattCoolgPwrPred": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out63", - "name": "sVcTestRx_Pw_HvBattCoolgPwrPred", - "configs": "((ALWAYS_ACTIVE))", - "description": "Cooling power (thermal) for next heating need.", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestRx_B_VehModDrv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out4", - "name": "yVcTestRx_B_VehModDrv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Vehicle Mode Driving", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestRx_B_MaxDefOn": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out64", - "name": "yVcTestRx_B_MaxDefOn", - "configs": "((ALWAYS_ACTIVE))", - "description": "Max Defroster On from DHU", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_HvBattOnOffVlvSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out65", - "name": "sVcTestRx_D_HvBattOnOffVlvSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "sVcTestRx_D_HvBattOnOffVlvSts", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_AmbTMecRimSnsr": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out66", - "name": "sVcTestRx_Te_AmbTMecRimSnsr", - "configs": "((ALWAYS_ACTIVE))", - "description": "Ambient temperature sensor from FIOC", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_AmbTMecRimSnsrElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out67", - "name": "sVcTestRx_D_AmbTMecRimSnsrElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "sVcFioc_D_AmbTMecRimSnsrElecSts", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_CircCnctVlvSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out68", - "name": "sVcTestRx_D_CircCnctVlvSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_CooltPmpDtElecCpbySts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out69", - "name": "sVcTestRx_D_CooltPmpDtElecCpbySts", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_CooltPmpHvBattCpbySts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out70", - "name": "sVcTestRx_D_CooltPmpHvBattCpbySts", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_CooltPmpInClimaCpbySts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out71", - "name": "sVcTestRx_D_CooltPmpInClimaCpbySts", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_FanRlySts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out73", - "name": "sVcTestRx_D_FanRlySts", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_PropVlvToHvBattCpbySts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out74", - "name": "sVcTestRx_D_PropVlvToHvBattCpbySts", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_RadrBypVlvSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out75", - "name": "sVcTestRx_D_RadrBypVlvSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_RlyForCoolgElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out76", - "name": "sVcTestRx_D_RlyForCoolgElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_RlyForCoolgSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out77", - "name": "sVcTestRx_D_RlyForCoolgSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_SplrShttrCpbySts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out78", - "name": "sVcTestRx_D_SplrShttrCpbySts", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_SplrShttrInfoSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out79", - "name": "sVcTestRx_D_SplrShttrInfoSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_p_PMedCmprOut": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out72", - "name": "sVcTestRx_p_PMedCmprOut", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestRx_B_MtrlSnsrTQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out80", - "name": "yVcTestRx_B_MtrlSnsrTQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestRx_B_VehModAvl": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out81", - "name": "yVcTestRx_B_VehModAvl", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestRx_B_VehModAwake": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out82", - "name": "yVcTestRx_B_VehModAwake", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestRx_B_VehModMovable": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out83", - "name": "yVcTestRx_B_VehModMovable", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Enm_CarMode": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out84", - "name": "sVcTestRx_Enm_CarMode", - "configs": "((ALWAYS_ACTIVE))", - "description": "Product Lifecycle distributes different lifecycle modes of the vehicle which includes Car Mode e.g. (normal, transport, dyno, factory), Crash Mode. ", - "type": "CarModes", - "unit": "-,$CarModes", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Enm_CarModeSubtype": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out85", - "name": "sVcTestRx_Enm_CarModeSubtype", - "configs": "((ALWAYS_ACTIVE))", - "description": "Product Lifecycle distributes different lifecycle modes of the vehicle which includes Car Mode e.g. (normal, transport, dyno, factory), Crash Mode. ", - "type": "CarModes", - "unit": "-,$CarModes", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestRx_B_CrashMod": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out86", - "name": "yVcTestRx_B_CrashMod", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_EvapTFrnt": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out87", - "name": "sVcTestRx_Te_EvapTFrnt", - "configs": "((ALWAYS_ACTIVE))", - "description": "Evap Temp Front", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestRx_B_EvapTFrntQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out88", - "name": "yVcTestRx_B_EvapTFrntQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "Evap temp Front QF", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_t_HvBattCoolgPwrTi": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out89", - "name": "sVcTestRx_t_HvBattCoolgPwrTi", - "configs": "((ALWAYS_ACTIVE))", - "description": "How long the current cooling power is held. ", - "type": "Float32", - "unit": "s", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Pw_HvBattCoolgPwrTran": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out90", - "name": "sVcTestRx_Pw_HvBattCoolgPwrTran", - "configs": "((ALWAYS_ACTIVE))", - "description": "Transition phase from current cooling power to the next stationary cooling power level.", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Pw_HvBattHeatgPwrEstimn": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out91", - "name": "sVcTestRx_Pw_HvBattHeatgPwrEstimn", - "configs": "((ALWAYS_ACTIVE))", - "description": "Heating power (thermal) for the current cooling need.", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Pw_HvBattHeatgPwrPred": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out92", - "name": "sVcTestRx_Pw_HvBattHeatgPwrPred", - "configs": "((ALWAYS_ACTIVE))", - "description": "Heating power (thermal) for the next cooling need.", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_t_HvBattHeatgPwrTi": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out93", - "name": "sVcTestRx_t_HvBattHeatgPwrTi", - "configs": "((ALWAYS_ACTIVE))", - "description": "How long the current heating power is held.", - "type": "Float32", - "unit": "s", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Pw_HvBattHeatgPwrTran": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out94", - "name": "sVcTestRx_Pw_HvBattHeatgPwrTran", - "configs": "((ALWAYS_ACTIVE))", - "description": "Transition phase from current heating power to the next stationary heating power level.", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_HvBattTAvg": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out97", - "name": "sVcTestRx_Te_HvBattTAvg", - "configs": "((ALWAYS_ACTIVE))", - "description": "The average temperature of the high voltage battery.", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_U_HvBattU": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out98", - "name": "sVcTestRx_U_HvBattU", - "configs": "((ALWAYS_ACTIVE))", - "description": "The average temperature of the high voltage battery.The average temperature of the high voltage battery.", - "type": "Float32", - "unit": "V", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_I_HvBattI": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out99", - "name": "sVcTestRx_I_HvBattI", - "configs": "((ALWAYS_ACTIVE))", - "description": "HV Battery current. Positive current is discharging the battery.", - "type": "Float32", - "unit": "A", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_I_EmIvtrFrntIDc": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out100", - "name": "sVcTestRx_I_EmIvtrFrntIDc", - "configs": "((ALWAYS_ACTIVE))", - "description": "Current in(+) or out(-) front inverter", - "type": "Float32", - "unit": "A", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Enm_EmIvtrFrntMod": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out101", - "name": "sVcTestRx_Enm_EmIvtrFrntMod", - "configs": "((ALWAYS_ACTIVE))", - "description": "Current operating mode", - "type": "EmMod", - "unit": "-,$EmMod", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_n_EmMotFrntSpd": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out102", - "name": "sVcTestRx_n_EmMotFrntSpd", - "configs": "((ALWAYS_ACTIVE))", - "description": "Current speed of electric axle scaled to wheel axle ", - "type": "Float32", - "unit": "rpm", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Tq_EmMotFrntTqAvlMax": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out103", - "name": "sVcTestRx_Tq_EmMotFrntTqAvlMax", - "configs": "((ALWAYS_ACTIVE))", - "description": "Available torque referred to the wheel axle. The torque is positive in the forward rotation direction", - "type": "Float32", - "unit": "Nm", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Tq_EmMotFrntTqAvlMin": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out104", - "name": "sVcTestRx_Tq_EmMotFrntTqAvlMin", - "configs": "((ALWAYS_ACTIVE))", - "description": "Available torque referred to the wheel axle. The torque is positive in the forward rotation direction", - "type": "Float32", - "unit": "Nm", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_U_EmIvtrFrntDcU": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out105", - "name": "sVcTestRx_U_EmIvtrFrntDcU", - "configs": "((ALWAYS_ACTIVE))", - "description": "DC voltage", - "type": "Float32", - "unit": "V", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Tq_EmMotFrntTqEstimn": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out106", - "name": "sVcTestRx_Tq_EmMotFrntTqEstimn", - "configs": "((ALWAYS_ACTIVE))", - "description": "Current estimated torque referred to the wheel axle. The torque is positive in the forward rotation direction", - "type": "Float32", - "unit": "Nm", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_I_EmIvtrReIDc": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out107", - "name": "sVcTestRx_I_EmIvtrReIDc", - "configs": "((ALWAYS_ACTIVE))", - "description": "Current in(+) or out(-) front inverter", - "type": "Float32", - "unit": "A", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Enm_EmIvtrReMod": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out108", - "name": "sVcTestRx_Enm_EmIvtrReMod", - "configs": "((ALWAYS_ACTIVE))", - "description": "Current operating mode", - "type": "EmMod", - "unit": "-,$EmMod", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_n_EmMotReSpd": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out109", - "name": "sVcTestRx_n_EmMotReSpd", - "configs": "((ALWAYS_ACTIVE))", - "description": "Current speed of electric axle scaled to wheel axle", - "type": "Float32", - "unit": "rpm", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Tq_EmMotReTqAvlMax": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out110", - "name": "sVcTestRx_Tq_EmMotReTqAvlMax", - "configs": "((ALWAYS_ACTIVE))", - "description": "Available torque referred to the wheel axle. The torque is positive in the forward rotation direction", - "type": "Float32", - "unit": "Nm", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Tq_EmMotReTqAvlMin": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out111", - "name": "sVcTestRx_Tq_EmMotReTqAvlMin", - "configs": "((ALWAYS_ACTIVE))", - "description": "Available torque referred to the wheel axle. The torque is positive in the forward rotation direction", - "type": "Float32", - "unit": "Nm", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_U_EmIvtrReDcU": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out112", - "name": "sVcTestRx_U_EmIvtrReDcU", - "configs": "((ALWAYS_ACTIVE))", - "description": "DC voltage", - "type": "Float32", - "unit": "V", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Tq_EmMotReTqEstimn": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out113", - "name": "sVcTestRx_Tq_EmMotReTqEstimn", - "configs": "((ALWAYS_ACTIVE))", - "description": "Current estimated torque referred to the wheel axle. The torque is positive in the forward rotation direction", - "type": "Float32", - "unit": "Nm", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_HvBattTMax": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out95", - "name": "sVcTestRx_Te_HvBattTMax", - "configs": "((ALWAYS_ACTIVE))", - "description": "The maximum temperature of the high voltage battery. ", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_HvBattTMin": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out96", - "name": "sVcTestRx_Te_HvBattTMin", - "configs": "((ALWAYS_ACTIVE))", - "description": "The minimum temperature of the high voltage battery.", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_v_VehSpdLgt": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out114", - "name": "sVcTestRx_v_VehSpdLgt", - "configs": "((ALWAYS_ACTIVE))", - "description": "Estimate of instantanious longitudinal velocity of vehicle using wheel rotary encoders, the Inertial Measurement Unit and the Global Positioning System. Vehicle axis system defined by ISO 8855.", - "type": "Float32", - "unit": "m/s", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Enm_VehSpdLgtQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out115", - "name": "sVcTestRx_Enm_VehSpdLgtQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "Estimate of instantanious longitudinal velocity of vehicle using wheel rotary encoders, QF", - "type": "VmsQf", - "unit": "-,$VmsQf", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_HvChrgrT": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out119", - "name": "sVcTestRx_Te_HvChrgrT", - "configs": "((ALWAYS_ACTIVE))", - "description": "It provides the temperature of the Onboard charger ", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_t_HvChrgTiToFull": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out120", - "name": "sVcTestRx_t_HvChrgTiToFull", - "configs": "((ALWAYS_ACTIVE))", - "description": "It provides an estimated charging time left", - "type": "Float32", - "unit": "s", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Pw_HvDcDcTraPwr": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out122", - "name": "sVcTestRx_Pw_HvDcDcTraPwr", - "configs": "((ALWAYS_ACTIVE))", - "description": "Power parameter that characterizes voltage transients.", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_I_HvDcDcILv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out123", - "name": "sVcTestRx_I_HvDcDcILv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Actual current at the Low Voltage side of Hconverter", - "type": "Float32", - "unit": "A", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_I_HvDcDcIHv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out124", - "name": "sVcTestRx_I_HvDcDcIHv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Actual current at the Low Voltage side of converter", - "type": "Float32", - "unit": "A", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_U_HvDcDcULv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out125", - "name": "sVcTestRx_U_HvDcDcULv", - "configs": "((ALWAYS_ACTIVE))", - "description": "The voltage on the low voltage side of Hconverter", - "type": "Float32", - "unit": "V", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_U_HvDcDcUHv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out126", - "name": "sVcTestRx_U_HvDcDcUHv", - "configs": "((ALWAYS_ACTIVE))", - "description": "The measured voltage on the high voltage side of converter", - "type": "Float32", - "unit": "V", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Enm_HvChrgrTyp": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out116", - "name": "sVcTestRx_Enm_HvChrgrTyp", - "configs": "((ALWAYS_ACTIVE))", - "description": "It provides the charging method currently used by the charging system", - "type": "HvChrgrTyp", - "unit": "-,$HvChrgrTyp", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Enm_HvChrgrCnctnSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out117", - "name": "sVcTestRx_Enm_HvChrgrCnctnSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "It provides connection status between the onboard charger and the Grid", - "type": "HvChrgrCnctnSts", - "unit": "-,$HvChrgrCnctnSts", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Enm_HvChrgnSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out118", - "name": "sVcTestRx_Enm_HvChrgnSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "It provides the charging status of the On-Board Charger for AC charging", - "type": "HvChrgnSts", - "unit": "-,$HvChrgnSts", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Enm_HvChrgCoolgReq": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out121", - "name": "sVcTestRx_Enm_HvChrgCoolgReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "It requests a change in cooling power on High Voltage Charger. According to the ways of coolling, the ECU will ask a specific type of colling. ", - "type": "HvChrgCoolgReq", - "unit": "-,$HvChrgCoolgReq", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Enm_HvDcDcMod": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out127", - "name": "sVcTestRx_Enm_HvDcDcMod", - "configs": "((ALWAYS_ACTIVE))", - "description": "Current settings and status of the converter", - "type": "HvDcDcMod", - "unit": "-,$HvDcDcMod", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Enm_HvDcDcCoolgFlowReq": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out128", - "name": "sVcTestRx_Enm_HvDcDcCoolgFlowReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "The converter has requested extra coolant flow", - "type": "CoolingFlowPower", - "unit": "-,$CoolingFlowPower", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Enm_HvDcDcFltSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out129", - "name": "sVcTestRx_Enm_HvDcDcFltSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "It indicates that the converter has a fault scenario", - "type": "HvDcDcFltSts", - "unit": "-,$HvDcDcFltSts", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Enm_MaiHvCntctSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out130", - "name": "sVcTestRx_Enm_MaiHvCntctSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Actual state of the HV batt contactors.", - "type": "HvCntctSts", - "unit": "-,$HvCntctSts", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Enm_HvDcDcCntctSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out131", - "name": "sVcTestRx_Enm_HvDcDcCntctSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Status of DC charging contactor pair 1.", - "type": "HvCntctSts", - "unit": "-,$HvCntctSts", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_ElecExpVlvCtrlPsnActForChillrVlv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out132", - "name": "sVcTestRx_X_ElecExpVlvCtrlPsnActForChillrVlv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Actual position of the expansion valve", - "type": "UInt16", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_ElecExpVlvCtrlIninStsForChillrVlv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out133", - "name": "sVcTestRx_D_ElecExpVlvCtrlIninStsForChillrVlv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Indicates status of initializationfor expansion valve 0. Not initialized, 1. Initialization in progress, 2. Initalized", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_ElecExpVlvCtrlTWarnStsForChillrVlv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out134", - "name": "sVcTestRx_D_ElecExpVlvCtrlTWarnStsForChillrVlv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Actual position of the expansion valve", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_ElecExpVlvCtrlUerrStsForChillrVlv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out135", - "name": "sVcTestRx_D_ElecExpVlvCtrlUerrStsForChillrVlv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Indicates if EXV voltagage error occur. 0. No error(OK), 1=Overvoltage. 2=Undervoltage ", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_D_ElecExpVlvCtrlErrStsForChillrVlv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out136", - "name": "sVcTestRx_D_ElecExpVlvCtrlErrStsForChillrVlv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Indicates if EXV fault occurs. 0. No error (OK), 1. Motor-coil shorted, 2. Motor-coil open load. 3. Overtemperature shutdown. 5. Status unknown ", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestRx_B_ElecExpVlvCtrlRunsStsForChillrVlv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out137", - "name": "yVcTestRx_B_ElecExpVlvCtrlRunsStsForChillrVlv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Indicates if motor is moving. 0=Not moving, 1=Moving ", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestRx_B_ElecExpVlvCtrlMotStallStsForChillrVlv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out138", - "name": "yVcTestRx_B_ElecExpVlvCtrlMotStallStsForChillrVlv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Indicates if the chiller expansion valve motor has stalled or not. 0=No stall detected 1=Stall detected ", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_n_CmprRunStsCmprSpd": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out140", - "name": "sVcTestRx_n_CmprRunStsCmprSpd", - "configs": "((ALWAYS_ACTIVE))", - "description": "Compressor speed ", - "type": "Float32", - "unit": "rpm", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_I_CmprRunStsCmprI": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out141", - "name": "sVcTestRx_I_CmprRunStsCmprI", - "configs": "((ALWAYS_ACTIVE))", - "description": "Compressor input current ", - "type": "Float32", - "unit": "A", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_I_CmprRunStsCmprIPha": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out142", - "name": "sVcTestRx_I_CmprRunStsCmprIPha", - "configs": "((ALWAYS_ACTIVE))", - "description": "Compressor phase current ", - "type": "Float32", - "unit": "A", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_CmprRunStsCmprT": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out143", - "name": "sVcTestRx_Te_CmprRunStsCmprT", - "configs": "((ALWAYS_ACTIVE))", - "description": "Compressor inverter termperature ", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_U_CmprRunStsCmprU": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out144", - "name": "sVcTestRx_U_CmprRunStsCmprU", - "configs": "((ALWAYS_ACTIVE))", - "description": "Compressor input voltage ", - "type": "Float32", - "unit": "V", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_p_PMedChillrOut": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out139", - "name": "sVcTestRx_p_PMedChillrOut", - "configs": "((ALWAYS_ACTIVE))", - "description": "Refrigerant pressure Chiller Out", - "type": "Float32", - "unit": "bar", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_TMedCmprOut": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out145", - "name": "sVcTestRx_Te_TMedCmprOut", - "configs": "((ALWAYS_ACTIVE))", - "description": "Refrigerant temperature compressor out", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_TMedChillrOut": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out146", - "name": "sVcTestRx_Te_TMedChillrOut", - "configs": "((ALWAYS_ACTIVE))", - "description": "Temperature refirgerant chiller out", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_HvCooltWtrHeatrWtrTInOutl2": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out147", - "name": "sVcTestRx_Te_HvCooltWtrHeatrWtrTInOutl2", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVHC in coolant temperature", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcCatRx_Pw_HvHeatrPwrCns2": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out148", - "name": "sVcCatRx_Pw_HvHeatrPwrCns2", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVCH power consumption", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_AirFlapPosnActForCentrForFirstLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out149", - "name": "sVcTestRx_X_AirFlapPosnActForCentrForFirstLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hvac air flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_AirFlapPosnActForDefrst1": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out150", - "name": "sVcTestRx_X_AirFlapPosnActForDefrst1", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hvac air flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_AirFlapPosnActForFlrForFirstRiLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out151", - "name": "sVcTestRx_X_AirFlapPosnActForFlrForFirstRiLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hvac air flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_AirFlapPosnActForFlrForSecRiLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out152", - "name": "sVcTestRx_X_AirFlapPosnActForFlrForSecRiLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hvac air flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_AirFlapPosnActForOsa1": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out153", - "name": "sVcTestRx_X_AirFlapPosnActForOsa1", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hvac air flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_AirFlapPosnActForRecirc1": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out154", - "name": "sVcTestRx_X_AirFlapPosnActForRecirc1", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hvac air flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_AirFlapPosnActForSideForFirstLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out155", - "name": "sVcTestRx_X_AirFlapPosnActForSideForFirstLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hvac air flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_AirFlapPosnActForVentCentrForFirstRi": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out156", - "name": "sVcTestRx_X_AirFlapPosnActForVentCentrForFirstRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hvac air flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_AirFlapPosnActForVentForSecRiLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out157", - "name": "sVcTestRx_X_AirFlapPosnActForVentForSecRiLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hvac air flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_AirFlapPosnActForVentSideForFirstRi": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out158", - "name": "sVcTestRx_X_AirFlapPosnActForVentSideForFirstRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hvac air flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_AirFlapPosnTActForFirstLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out159", - "name": "sVcTestRx_X_AirFlapPosnTActForFirstLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hvac air flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_AirFlapPosnTActForFirstRi": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out160", - "name": "sVcTestRx_X_AirFlapPosnTActForFirstRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hvac air flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_AirFlapPosnTActForSecLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out161", - "name": "sVcTestRx_X_AirFlapPosnTActForSecLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hvac air flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_AirFlapPosnTActForSecRi": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out162", - "name": "sVcTestRx_X_AirFlapPosnTActForSecRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hvac air flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_HvacAirTForHeatrFrnt": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out163", - "name": "sVcTestRx_Te_HvacAirTForHeatrFrnt", - "configs": "((ALWAYS_ACTIVE))", - "description": "HEX temperature sensor", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestRx_B_HvacAirTForHeatrFrntQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out164", - "name": "yVcTestRx_B_HvacAirTForHeatrFrntQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "Quality factor for HEX temperature sensor", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_HvacAirTForRowFirstAtFlrRi": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out165", - "name": "sVcTestRx_Te_HvacAirTForRowFirstAtFlrRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hvac outlet temperature", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestRx_B_HvacAirTForRowFirstAtFlrRiQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out166", - "name": "yVcTestRx_B_HvacAirTForRowFirstAtFlrRiQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "Quality factor for Hvac outlet temperature", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_HvacAirTForRowFirstAtVentLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out167", - "name": "sVcTestRx_Te_HvacAirTForRowFirstAtVentLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hvac outlet temperature", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestRx_B_HvacAirTForRowFirstAtVentLeQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out168", - "name": "yVcTestRx_B_HvacAirTForRowFirstAtVentLeQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "Quality factor for Hvac outlet temperature", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_HvacAirTForRowFirstAtVentRi": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out169", - "name": "sVcTestRx_Te_HvacAirTForRowFirstAtVentRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hvac outlet temperature", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestRx_B_HvacAirTForRowFirstAtVentRiQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out170", - "name": "yVcTestRx_B_HvacAirTForRowFirstAtVentRiQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "Quality factor for Hvac outlet temperature", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_HvacAirTForRowSecAtFlrLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out171", - "name": "sVcTestRx_Te_HvacAirTForRowSecAtFlrLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hvac outlet temperature", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestRx_B_HvacAirTForRowSecAtFlrLeQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out172", - "name": "yVcTestRx_B_HvacAirTForRowSecAtFlrLeQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "Quality factor for Hvac outlet temperature", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_HvacAirTForRowSecAtFlrRi": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out173", - "name": "sVcTestRx_Te_HvacAirTForRowSecAtFlrRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hvac outlet temperature", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestRx_B_HvacAirTForRowSecAtFlrRiQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out174", - "name": "yVcTestRx_B_HvacAirTForRowSecAtFlrRiQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "Quality factor for Hvac outlet temperature", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_HvacAirTForRowSecAtVentLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out175", - "name": "sVcTestRx_Te_HvacAirTForRowSecAtVentLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hvac outlet temperature", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestRx_B_HvacAirTForRowSecAtVentLeQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out176", - "name": "yVcTestRx_B_HvacAirTForRowSecAtVentLeQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "Quality factor for Hvac outlet temperature", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_HvacAirTForRowSecAtVentRi": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out177", - "name": "sVcTestRx_Te_HvacAirTForRowSecAtVentRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hvac outlet temperature", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestRx_B_HvacAirTForRowSecAtVentRiQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out178", - "name": "yVcTestRx_B_HvacAirTForRowSecAtVentRiQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "Quality factor for Hvac outlet temperature", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_Te_HvacAirTForRowFirstAtFlrLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out179", - "name": "sVcTestRx_Te_HvacAirTForRowFirstAtFlrLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hvac outlet temperature", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestRx_B_HvacAirTForRowFirstAtFlrLeQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out180", - "name": "yVcTestRx_B_HvacAirTForRowFirstAtFlrLeQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "Quality factor for Hvac outlet temperature", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_HmiReqForRo1VentSideLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out181", - "name": "sVcTestRx_X_HmiReqForRo1VentSideLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hmi Request for vent Side Left (Thumbwheel)", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_HmiReqForRo1VentSideRi": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out182", - "name": "sVcTestRx_X_HmiReqForRo1VentSideRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hmi Request for vent Side Right (Thumbwheel)", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_HmiReqForRo1VentCenLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out183", - "name": "sVcTestRx_X_HmiReqForRo1VentCenLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hmi Request for vent Center Left (Thumbwheel)", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestRx_X_HmiReqForRo1VentCenRi": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Out184", - "name": "sVcTestRx_X_HmiReqForRo1VentCenRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hmi Request for vent Center Right (Thumbwheel)", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - } - }, - "inports": { - "yVcVmp_B_VehModConv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In1", - "name": "yVcVmp_B_VehModConv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Vehicle Mode convinience", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcVmp_B_VehModDrv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In2", - "name": "yVcVmp_B_VehModDrv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Vehicle Mode Drive", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhfa_Pw_EmIvtrPwrLossEstimdFrnt": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In3", - "name": "sVcIhfa_Pw_EmIvtrPwrLossEstimdFrnt", - "configs": "((ALWAYS_ACTIVE))", - "description": "EM Inverter Power Loss Estimated Front", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhfa_Pw_EmMotPwrLossEstimdFrnt": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In4", - "name": "sVcIhfa_Pw_EmMotPwrLossEstimdFrnt", - "configs": "((ALWAYS_ACTIVE))", - "description": "EM Motor Power Loss Estimated Front", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhfa_Pw_EmPwrAddlLossAvlFrnt": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In5", - "name": "sVcIhfa_Pw_EmPwrAddlLossAvlFrnt", - "configs": "((ALWAYS_ACTIVE))", - "description": "EM Power Additional Loss Available Front", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhfa_Pw_EmPwrAddlLossEstimdFrnt": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In6", - "name": "sVcIhfa_Pw_EmPwrAddlLossEstimdFrnt", - "configs": "((ALWAYS_ACTIVE))", - "description": "EM Power Additional Loss Estimated Front", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhfa_Te_EmIvtrFrntCooltT": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In7", - "name": "sVcIhfa_Te_EmIvtrFrntCooltT", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant temperature measured in the coolant inlet in inverter", - "type": "Int16", - "unit": "deg C", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhfa_Te_EmIvtrFrntT": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In8", - "name": "sVcIhfa_Te_EmIvtrFrntT", - "configs": "((ALWAYS_ACTIVE))", - "description": "Inverter temperature measured in the inverter front", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhfa_Te_EmMotFrntT": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In9", - "name": "sVcIhfa_Te_EmMotFrntT", - "configs": "((ALWAYS_ACTIVE))", - "description": "The motor temperature measured at the windings in the electric motor", - "type": "Int16", - "unit": "deg C", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhfa_Enm_EmFrntCoolgReq": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In10", - "name": "sVcIhfa_Enm_EmFrntCoolgReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Request for increased cooling power to both electric machine and inverter ", - "type": "Int8", - "unit": "-,$EmCoolgReq", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhra_Pw_EmIvtrPwrLossEstimdRe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In11", - "name": "sVcIhra_Pw_EmIvtrPwrLossEstimdRe", - "configs": "((ALWAYS_ACTIVE))", - "description": "EM Inverter Power Loss Estimated Rear", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhra_Pw_EmMotPwrLossEstimdRe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In12", - "name": "sVcIhra_Pw_EmMotPwrLossEstimdRe", - "configs": "((ALWAYS_ACTIVE))", - "description": "EM Motor Power Loss Estimated Rear", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhra_Pw_EmPwrAddlLossAvlRe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In13", - "name": "sVcIhra_Pw_EmPwrAddlLossAvlRe", - "configs": "((ALWAYS_ACTIVE))", - "description": "EM Power Additional Loss Available Rear", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhra_Pw_EmPwrAddlLossEstimdRe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In14", - "name": "sVcIhra_Pw_EmPwrAddlLossEstimdRe", - "configs": "((ALWAYS_ACTIVE))", - "description": "EM Power Additional Loss Estimated Rear", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_FanModSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In19", - "name": "sVcFioc_D_FanModSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Fan Mode Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_FanCpbySts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In20", - "name": "sVcFioc_D_FanCpbySts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Fan Error", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_X_FanSpdAct": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In21", - "name": "sVcFioc_X_FanSpdAct", - "configs": "((ALWAYS_ACTIVE))", - "description": "Fan Speed Actual", - "type": "UInt8", - "unit": "%", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_StsOfCooltLvl": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In22", - "name": "sVcFioc_D_StsOfCooltLvl", - "configs": "((ALWAYS_ACTIVE))", - "description": "Status Of Coolant Level", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_Te_CooltTAftRadrDtElec": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In23", - "name": "sVcFioc_Te_CooltTAftRadrDtElec", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Temperature After Radiator Drivetrain Electric", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_Te_CooltTAftHvac": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In24", - "name": "sVcFioc_Te_CooltTAftHvac", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Temperature After Hvac", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_Te_CooltTBfrRadrBypVlv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In25", - "name": "sVcFioc_Te_CooltTBfrRadrBypVlv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Temperature Before Radiator Bypass Valve", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_Te_CooltTAtHvBattOutl": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In26", - "name": "sVcFioc_Te_CooltTAtHvBattOutl", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Temperature At High Voltage Battery Outlet", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_FanElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In27", - "name": "sVcFioc_D_FanElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Fan Electric Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_FanRlyElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In28", - "name": "sVcFioc_D_FanRlyElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Fan Relay Electric Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_CircCnctVlvElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In29", - "name": "sVcFioc_D_CircCnctVlvElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Circuit Connect Valve Electric Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_RadrBypVlvElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In30", - "name": "sVcFioc_D_RadrBypVlvElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Radiator Bypass Valve Electric Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_HvBattOnOffVlvElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In31", - "name": "sVcFioc_D_HvBattOnOffVlvElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "High Voltage Battery On Off Valve Electric Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_CooltTAftRadrDtElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In32", - "name": "sVcFioc_D_CooltTAftRadrDtElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Temperature After Radiator Drivetrain Electric Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_CooltTAftHvacElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In33", - "name": "sVcFioc_D_CooltTAftHvacElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Temperature After Hvac Electric Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_CooltTBfrRadrBypVlvElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In34", - "name": "sVcFioc_D_CooltTBfrRadrBypVlvElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Temperature Before Radiator Bypass Valve Electric Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_CooltTAtHvBattOutlElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In35", - "name": "sVcFioc_D_CooltTAtHvBattOutlElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Temperature At High Voltage Battery Outlet Electric Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_CooltLvlElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In36", - "name": "sVcFioc_D_CooltLvlElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Level Electric Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_X_CooltPmpSpdInHvBattCircAct": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In37", - "name": "sVcFioc_X_CooltPmpSpdInHvBattCircAct", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Pump Speed In High Voltage Battery Circuit Actual", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_X_CooltPmpInHvBattCircSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In38", - "name": "sVcFioc_X_CooltPmpInHvBattCircSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Pump In High Voltage Battery Circuit Status", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_X_CooltPmpSpdInCircDtElecAct": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In39", - "name": "sVcFioc_X_CooltPmpSpdInCircDtElecAct", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Pump Speed In Circuit Drivetrain Electric Actual", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_CooltPmpInDtElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In40", - "name": "sVcFioc_D_CooltPmpInDtElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Pump In Drivetrain Electric Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_X_CooltPmpSpdInCircClimaAct": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In41", - "name": "sVcFioc_X_CooltPmpSpdInCircClimaAct", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Pump Speed In Circuit Climatisation Actual", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_CltPmpInCircClimaSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In42", - "name": "sVcFioc_D_CltPmpInCircClimaSts", - "configs": "((ALWAYS_ACTIVE))", - "description": " Pump In Circuit Climatisation Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_X_PropVlvToHvBattAct": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In43", - "name": "sVcFioc_X_PropVlvToHvBattAct", - "configs": "((ALWAYS_ACTIVE))", - "description": "Proportional Valve To High Voltage Battery Actual", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_PropVlvToHvBattFltSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In44", - "name": "sVcFioc_D_PropVlvToHvBattFltSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Proportional Valve To High Voltage Battery Fault Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_PropVlvToHvBattSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In45", - "name": "sVcFioc_D_PropVlvToHvBattSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Proportional Valve To High Voltage Battery Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_SplrShttrSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In46", - "name": "sVcFioc_D_SplrShttrSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Spoiler Shutter Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_SplrShttrFltSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In47", - "name": "sVcFioc_D_SplrShttrFltSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Spoiler Shutter Fault Status", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_an_SplrShttrAgAct": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In48", - "name": "sVcFioc_an_SplrShttrAgAct", - "configs": "((ALWAYS_ACTIVE))", - "description": "Spoiler Shutter Angle Actual", - "type": "Float32", - "unit": "deg", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_Pw_HvBattHeatgPwrAllwd": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In49", - "name": "sVcHvec_Pw_HvBattHeatgPwrAllwd", - "configs": "((ALWAYS_ACTIVE))", - "description": "Allowed heating power of the high voltage battery. ", - "type": "UInt16", - "unit": "W", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_Pw_HvBattHeatgPwrReq": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In50", - "name": "sVcHvec_Pw_HvBattHeatgPwrReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Heating power request of the high voltage battery. Used to keep battery within the minimum operating temperature. ", - "type": "UInt16", - "unit": "W", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_E_HvBattClimaEgyReq": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In51", - "name": "sVcHvec_E_HvBattClimaEgyReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "High Voltage Battery Climatisation Energy Request", - "type": "UInt16", - "unit": "Wh", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_D_HvBattClimaPrioReq": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In52", - "name": "sVcHvec_D_HvBattClimaPrioReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "High Voltage Battery Climatisation Priority Request", - "type": "Int8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_Pw_HvBattClimaPwrEstimn": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In53", - "name": "sVcHvec_Pw_HvBattClimaPwrEstimn", - "configs": "((ALWAYS_ACTIVE))", - "description": "Climatization power estimation of the high voltage battery based on the flow of the coolant within the battery pack, the temperature of the coolant within the battery pack and specific heat capacity for the coolant. ", - "type": "Int16", - "unit": "W", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_E_HvBattCoolgEgyAllwd": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In54", - "name": "sVcHvec_E_HvBattCoolgEgyAllwd", - "configs": "((ALWAYS_ACTIVE))", - "description": "High voltage battery allowed cooling energy. The limit is estimated based on min and max battery temperature and the thermal mass of the battery pack. Data is used as input for thermal coordinator to use the battery HW as thermal sink.", - "type": "UInt16", - "unit": "Wh", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_Pw_HvBattCoolgPwrAllwd": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In55", - "name": "sVcHvec_Pw_HvBattCoolgPwrAllwd", - "configs": "((ALWAYS_ACTIVE))", - "description": "The cooling powers are derived from the respective energy allowed limitations and based on a calibratable time threshold. ", - "type": "UInt16", - "unit": "W", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_Pw_HvBattCoolgPwrReq": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In56", - "name": "sVcHvec_Pw_HvBattCoolgPwrReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Cooling power request of the high voltage battery.", - "type": "UInt16", - "unit": "W", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_E_HvBattHeatgEgyAllwd": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In57", - "name": "sVcHvec_E_HvBattHeatgEgyAllwd", - "configs": "((ALWAYS_ACTIVE))", - "description": "Allowed heating energy of the high voltage battery. Input to thermal coordinator to be able to use high voltage battery as thermal sink.", - "type": "UInt16", - "unit": "Wh", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_Q_HvBattMinFlowReq": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In58", - "name": "sVcHvec_Q_HvBattMinFlowReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Minimum flow request of the high voltage battery. Request for coolant flow.", - "type": "Float32", - "unit": "l/min", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_Enm_HvBattCooltTSnsrSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In59", - "name": "sVcHvec_Enm_HvBattCooltTSnsrSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Status of the coolant temperature sensor. Something of a quality flag.", - "type": "Int8", - "unit": "-,$HvBattSnsrSts", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_Pw_HvBattCoolgPwrEstimn": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In60", - "name": "sVcHvec_Pw_HvBattCoolgPwrEstimn", - "configs": "((ALWAYS_ACTIVE))", - "description": "Cooling power (thermal) for current heating need.", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_Pw_HvBattCoolgPwrPred": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In61", - "name": "sVcHvec_Pw_HvBattCoolgPwrPred", - "configs": "((ALWAYS_ACTIVE))", - "description": "Cooling power (thermal) for next heating need.", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcReq_B_MaxDefOn": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In62", - "name": "yVcReq_B_MaxDefOn", - "configs": "((ALWAYS_ACTIVE))", - "description": "MaxDefOn", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_HvBattOnOffVlvSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In63", - "name": "sVcFioc_D_HvBattOnOffVlvSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "sVcFioc_D_HvBattOnOffVlvSts", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_Te_AmbTMecRimSnsr": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In64", - "name": "sVcFioc_Te_AmbTMecRimSnsr", - "configs": "((ALWAYS_ACTIVE))", - "description": "Ambient temperature sensor from FIOC", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_AmbTMecRimSnsrElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In65", - "name": "sVcFioc_D_AmbTMecRimSnsrElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "sVcFioc_D_AmbTMecRimSnsrElecSts", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_CircCnctVlvSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In66", - "name": "sVcFioc_D_CircCnctVlvSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "sVcFioc_D_CircCnctVlvSts", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_CooltPmpDtElecCpbySts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In67", - "name": "sVcFioc_D_CooltPmpDtElecCpbySts", - "configs": "((ALWAYS_ACTIVE))", - "description": "sVcFioc_D_CooltPmpDtElecCpbySts", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_CooltPmpHvBattCpbySts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In68", - "name": "sVcFioc_D_CooltPmpHvBattCpbySts", - "configs": "((ALWAYS_ACTIVE))", - "description": "sVcFioc_D_CooltPmpHvBattCpbySts", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_CooltPmpInClimaCpbySts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In69", - "name": "sVcFioc_D_CooltPmpInClimaCpbySts", - "configs": "((ALWAYS_ACTIVE))", - "description": "sVcFioc_D_CooltPmpInClimaCpbySts", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_FanRlySts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In71", - "name": "sVcFioc_D_FanRlySts", - "configs": "((ALWAYS_ACTIVE))", - "description": "sVcFioc_D_FanRlySts", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_PropVlvToHvBattCpbySts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In73", - "name": "sVcFioc_D_PropVlvToHvBattCpbySts", - "configs": "((ALWAYS_ACTIVE))", - "description": "sVcFioc_D_PropVlvToHvBattCpbySts", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_RadrBypVlvSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In74", - "name": "sVcFioc_D_RadrBypVlvSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "sVcFioc_D_RadrBypVlvSts", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_RlyForCoolgElecSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In75", - "name": "sVcFioc_D_RlyForCoolgElecSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "sVcFioc_D_RlyForCoolgElecSts", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_RlyForCoolgSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In76", - "name": "sVcFioc_D_RlyForCoolgSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "sVcFioc_D_RlyForCoolgSts", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_SplrShttrCpbySts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In77", - "name": "sVcFioc_D_SplrShttrCpbySts", - "configs": "((ALWAYS_ACTIVE))", - "description": "sVcFioc_D_SplrShttrCpbySts", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_SplrShttrInfoSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In78", - "name": "sVcFioc_D_SplrShttrInfoSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "sVcFioc_D_SplrShttrInfoSts", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_p_PMedCmprOut": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In70", - "name": "sVcFioc_p_PMedCmprOut", - "configs": "((ALWAYS_ACTIVE))", - "description": "sVcFioc_Z_PMedCmprOut", - "type": "Float32", - "unit": "bar", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_Te_EvapTFrnt": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In72", - "name": "sVcCcmb_Te_EvapTFrnt", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_Te_MtrlSnsrT": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In79", - "name": "sVcCcmb_Te_MtrlSnsrT", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcCcmb_B_MtrlSnsrTQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In80", - "name": "yVcCcmb_B_MtrlSnsrTQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcCcmb_B_EvapTFrntQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In81", - "name": "yVcCcmb_B_EvapTFrntQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcVmp_B_VehModAvl": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In82", - "name": "yVcVmp_B_VehModAvl", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcVmp_B_VehModAwake": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In83", - "name": "yVcVmp_B_VehModAwake", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcVmp_B_VehModMovable": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In84", - "name": "yVcVmp_B_VehModMovable", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcVmp_Enm_CarMode": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In85", - "name": "sVcVmp_Enm_CarMode", - "configs": "((ALWAYS_ACTIVE))", - "description": "Product Lifecycle distributes different lifecycle modes of the vehicle which includes Car Mode e.g. (normal, transport, dyno, factory), Crash Mode. ", - "type": "Int8", - "unit": "-,$CarModes", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcVmp_Enm_CarModeSubtype": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In86", - "name": "sVcVmp_Enm_CarModeSubtype", - "configs": "((ALWAYS_ACTIVE))", - "description": "Product Lifecycle distributes different lifecycle modes of the vehicle which includes Car Mode e.g. (normal, transport, dyno, factory), Crash Mode", - "type": "Int8", - "unit": "-,$CarModes", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcVmp_B_CrashMod": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In87", - "name": "yVcVmp_B_CrashMod", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_t_HvBattCoolgPwrTi": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In88", - "name": "sVcHvec_t_HvBattCoolgPwrTi", - "configs": "((ALWAYS_ACTIVE))", - "description": "How long the current cooling power is held. ", - "type": "Int32", - "unit": "s", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_Pw_HvBattCoolgPwrTran": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In89", - "name": "sVcHvec_Pw_HvBattCoolgPwrTran", - "configs": "((ALWAYS_ACTIVE))", - "description": "Transition phase from current cooling power to the next stationary cooling power level. ", - "type": "Int32", - "unit": "W", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_Pw_HvBattHeatgPwrEstimn": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In90", - "name": "sVcHvec_Pw_HvBattHeatgPwrEstimn", - "configs": "((ALWAYS_ACTIVE))", - "description": "Heating power (thermal) for the current cooling need. ", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_Pw_HvBattHeatgPwrPred": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In91", - "name": "sVcHvec_Pw_HvBattHeatgPwrPred", - "configs": "((ALWAYS_ACTIVE))", - "description": "Heating power (thermal) for the next cooling need. ", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_t_HvBattHeatgPwrTi": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In92", - "name": "sVcHvec_t_HvBattHeatgPwrTi", - "configs": "((ALWAYS_ACTIVE))", - "description": "How long the current heating power is held.", - "type": "Int32", - "unit": "s", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_Pw_HvBattHeatgPwrTran": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In93", - "name": "sVcHvec_Pw_HvBattHeatgPwrTran", - "configs": "((ALWAYS_ACTIVE))", - "description": "Transition phase from current heating power to the next stationary heating power level. ", - "type": "Int32", - "unit": "W", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_Te_HvBattTAvg": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In96", - "name": "sVcHvec_Te_HvBattTAvg", - "configs": "((ALWAYS_ACTIVE))", - "description": "The average temperature of the high voltage battery.", - "type": "Int32", - "unit": "deg C", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_U_HvBattU": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In97", - "name": "sVcHvec_U_HvBattU", - "configs": "((ALWAYS_ACTIVE))", - "description": "Actual HV Battery pack voltage (measured before contactors, i.e. always giving pack voltage).", - "type": "Float32", - "unit": "V", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_I_HvBattI": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In98", - "name": "sVcHvec_I_HvBattI", - "configs": "((ALWAYS_ACTIVE))", - "description": "HV Battery current. Positive current is discharging the battery.", - "type": "Float32", - "unit": "A", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhfa_I_EmIvtrFrntIDc": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In99", - "name": "sVcIhfa_I_EmIvtrFrntIDc", - "configs": "((ALWAYS_ACTIVE))", - "description": "Current in(+) or out(-) front inverter", - "type": "Float32", - "unit": "A", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhfa_Enm_EmIvtrFrntMod": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In100", - "name": "sVcIhfa_Enm_EmIvtrFrntMod", - "configs": "((ALWAYS_ACTIVE))", - "description": "Current operating mode", - "type": "Int8", - "unit": "-,$EmMod", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhfa_n_EmMotFrntSpd": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In101", - "name": "sVcIhfa_n_EmMotFrntSpd", - "configs": "((ALWAYS_ACTIVE))", - "description": "Current speed of electric axle scaled to wheel axle ", - "type": "Int16", - "unit": "rpm", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhfa_Tq_EmMotFrntTqAvlMax": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In102", - "name": "sVcIhfa_Tq_EmMotFrntTqAvlMax", - "configs": "((ALWAYS_ACTIVE))", - "description": "Available torque referred to the wheel axle. The torque is positive in the forward rotation direction", - "type": "Int16", - "unit": "Nm", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhfa_Tq_EmMotFrntTqAvlMin": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In103", - "name": "sVcIhfa_Tq_EmMotFrntTqAvlMin", - "configs": "((ALWAYS_ACTIVE))", - "description": "Available torque referred to the wheel axle. The torque is positive in the forward rotation direction", - "type": "Int16", - "unit": "Nm", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhfa_U_EmIvtrFrntDcU": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In104", - "name": "sVcIhfa_U_EmIvtrFrntDcU", - "configs": "((ALWAYS_ACTIVE))", - "description": "DC voltage", - "type": "Float32", - "unit": "V", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhfa_Tq_EmMotFrntTqEstimn": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In105", - "name": "sVcIhfa_Tq_EmMotFrntTqEstimn", - "configs": "((ALWAYS_ACTIVE))", - "description": "Current estimated torque referred to the wheel axle. The torque is positive in the forward rotation direction", - "type": "Int16", - "unit": "Nm", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhra_Te_EmIvtrReCooltT": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In15", - "name": "sVcIhra_Te_EmIvtrReCooltT", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant temperature measured in the coolant inlet in inverter", - "type": "Int16", - "unit": "deg C", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhra_Te_EmIvtrReT": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In16", - "name": "sVcIhra_Te_EmIvtrReT", - "configs": "((ALWAYS_ACTIVE))", - "description": "Inverter temperature measured in the inverter rear", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhra_Enm_EmReCoolgReq": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In18", - "name": "sVcIhra_Enm_EmReCoolgReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Request for increased cooling power to both electric machine and inverter", - "type": "Int8", - "unit": "-,$EmCoolgReq", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhra_Te_EmMotReT": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In17", - "name": "sVcIhra_Te_EmMotReT", - "configs": "((ALWAYS_ACTIVE))", - "description": "The motor temperature measured at the windings in the electric motor", - "type": "Int16", - "unit": "deg C", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhra_I_EmIvtrReIDc": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In106", - "name": "sVcIhra_I_EmIvtrReIDc", - "configs": "((ALWAYS_ACTIVE))", - "description": "Current in(+) or out(-) front inverter", - "type": "Float32", - "unit": "A", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhra_Enm_EmIvtrReMod": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In107", - "name": "sVcIhra_Enm_EmIvtrReMod", - "configs": "((ALWAYS_ACTIVE))", - "description": "Current operating mode ", - "type": "Int8", - "unit": "-,$EmMod", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhra_n_EmMotReSpd": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In108", - "name": "sVcIhra_n_EmMotReSpd", - "configs": "((ALWAYS_ACTIVE))", - "description": "Current speed of electric axle scaled to wheel axle", - "type": "Int16", - "unit": "rpm", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhra_Tq_EmMotReTqAvlMax": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In109", - "name": "sVcIhra_Tq_EmMotReTqAvlMax", - "configs": "((ALWAYS_ACTIVE))", - "description": "Available torque referred to the wheel axle. The torque is positive in the forward rotation direction ", - "type": "Int16", - "unit": "Nm", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhra_Tq_EmMotReTqAvlMin": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In110", - "name": "sVcIhra_Tq_EmMotReTqAvlMin", - "configs": "((ALWAYS_ACTIVE))", - "description": "Available torque referred to the wheel axle. The torque is positive in the forward rotation direction", - "type": "Int16", - "unit": "Nm", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhra_U_EmIvtrReDcU": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In111", - "name": "sVcIhra_U_EmIvtrReDcU", - "configs": "((ALWAYS_ACTIVE))", - "description": "DC voltage", - "type": "Float32", - "unit": "V", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcIhra_Tq_EmMotReTqEstimn": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In112", - "name": "sVcIhra_Tq_EmMotReTqEstimn", - "configs": "((ALWAYS_ACTIVE))", - "description": "Current estimated torque referred to the wheel axle. The torque is positive in the forward rotation direction", - "type": "Int16", - "unit": "Nm", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_Te_HvBattTMax": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In94", - "name": "sVcHvec_Te_HvBattTMax", - "configs": "((ALWAYS_ACTIVE))", - "description": "The maximum temperature of the high voltage battery. ", - "type": "Int32", - "unit": "deg C", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_Te_HvBattTMin": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In95", - "name": "sVcHvec_Te_HvBattTMin", - "configs": "((ALWAYS_ACTIVE))", - "description": "The minimum temperature of the high voltage battery.", - "type": "Int32", - "unit": "deg C", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcVms_v_VehSpdLgt": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In113", - "name": "sVcVms_v_VehSpdLgt", - "configs": "((ALWAYS_ACTIVE))", - "description": "Estimate of instantanious longitudinal velocity of vehicle using wheel rotary encoders, the Inertial Measurement Unit and the Global Positioning System. Vehicle axis system defined by ISO 8855.", - "type": "Float32", - "unit": "m/s", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcVms_Enm_VehSpdLgtQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In114", - "name": "sVcVms_Enm_VehSpdLgtQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "Estimate of instantanious longitudinal velocity of vehicle using wheel rotary encoders, QF", - "type": "Int8", - "unit": "-,$VmsQf", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvcc_Te_HvChrgrT": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In118", - "name": "sVcHvcc_Te_HvChrgrT", - "configs": "((ALWAYS_ACTIVE))", - "description": "It provides the temperature of the Onboard charger ", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvcc_t_HvChrgTiToFull": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In119", - "name": "sVcHvcc_t_HvChrgTiToFull", - "configs": "((ALWAYS_ACTIVE))", - "description": "It provides an estimated charging time left", - "type": "UInt16", - "unit": "s", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHlcm_Pw_HvDcDcTraPwr": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In121", - "name": "sVcHlcm_Pw_HvDcDcTraPwr", - "configs": "((ALWAYS_ACTIVE))", - "description": "Power parameter that characterizes voltage transients.", - "type": "UInt16", - "unit": "W", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHlcm_I_HvDcDcILv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In122", - "name": "sVcHlcm_I_HvDcDcILv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Actual current at the Low Voltage side of Hconverter", - "type": "Float32", - "unit": "A", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHlcm_I_HvDcDcIHv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In123", - "name": "sVcHlcm_I_HvDcDcIHv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Actual current at the Low Voltage side of converter", - "type": "Float32", - "unit": "A", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHlcm_U_HvDcDcULv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In124", - "name": "sVcHlcm_U_HvDcDcULv", - "configs": "((ALWAYS_ACTIVE))", - "description": "The voltage on the low voltage side of Hconverter", - "type": "Float32", - "unit": "V", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHlcm_U_HvDcDcUHv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In125", - "name": "sVcHlcm_U_HvDcDcUHv", - "configs": "((ALWAYS_ACTIVE))", - "description": "The measured voltage on the high voltage side of converter", - "type": "Float32", - "unit": "V", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvcc_Enm_HvChrgrTyp": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In115", - "name": "sVcHvcc_Enm_HvChrgrTyp", - "configs": "((ALWAYS_ACTIVE))", - "description": "It provides the charging method currently used by the charging system", - "type": "Int8", - "unit": "-,$HvChrgrTyp", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvcc_Enm_HvChrgrCnctnSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In116", - "name": "sVcHvcc_Enm_HvChrgrCnctnSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "It provides connection status between the onboard charger and the Grid", - "type": "Int8", - "unit": "-,$HvChrgrCnctnSts", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvcc_Enm_HvChrgnSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In117", - "name": "sVcHvcc_Enm_HvChrgnSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "It provides the charging status of the On-Board Charger for AC charging", - "type": "Int8", - "unit": "-,$HvChrgnSts", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHlcm_Enm_HvDcDcMod": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In120", - "name": "sVcHlcm_Enm_HvDcDcMod", - "configs": "((ALWAYS_ACTIVE))", - "description": "Current settings and status of the converter", - "type": "Int8", - "unit": "-,$HvDcDcMod", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHlcm_Enm_HvDcDcCoolgFlowReq": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In126", - "name": "sVcHlcm_Enm_HvDcDcCoolgFlowReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "The converter has requested extra coolant flow", - "type": "Int8", - "unit": "-,$CoolingFlowPower", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHlcm_Enm_HvDcDcFltSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In127", - "name": "sVcHlcm_Enm_HvDcDcFltSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "It indicates that the converter has a fault scenario", - "type": "Int8", - "unit": "-,$HvDcDcFltSts", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_Enm_MaiHvCntctSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In128", - "name": "sVcHvec_Enm_MaiHvCntctSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Actual state of the HV batt contactors.", - "type": "Int8", - "unit": "-,$HvCntctSts", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvec_Enm_HvDcDcCntctSts": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In129", - "name": "sVcHvec_Enm_HvDcDcCntctSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Status of DC charging contactor pair 1.", - "type": "Int8", - "unit": "-,$HvCntctSts", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcHvcc_Enm_HvChrgCoolgReq": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In130", - "name": "sVcHvcc_Enm_HvChrgCoolgReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "It requests a change in cooling power on High Voltage Charger. According to the ways of coolling, the ECU will ask a specific type of colling.", - "type": "Int8", - "unit": "-,$HvChrgCoolgReq", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_X_ElecExpVlvCtrlPsnActForChillrVlv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In131", - "name": "sVcFioc_X_ElecExpVlvCtrlPsnActForChillrVlv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Actual position of the expansion valve", - "type": "UInt16", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": 0, - "max": 576, - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_ElecExpVlvCtrlIninStsForChillrVlv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In132", - "name": "sVcFioc_D_ElecExpVlvCtrlIninStsForChillrVlv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Indicates status of initializationfor expansion valve 0. Not initialized, 1. Initialization in progress, 2. Initalized", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_ElecExpVlvCtrlTWarnStsForChillrVlv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In133", - "name": "sVcFioc_D_ElecExpVlvCtrlTWarnStsForChillrVlv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Indicates if overheat occurs. 0=No overheat(OK) 1=Overheat ", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_ElecExpVlvCtrlUerrStsForChillrVlv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In134", - "name": "sVcFioc_D_ElecExpVlvCtrlUerrStsForChillrVlv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Indicates if EXV voltagage error occur. 0. No error(OK), 1=Overvoltage. 2=Undervoltage ", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_D_ElecExpVlvCtrlErrStsForChillrVlv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In135", - "name": "sVcFioc_D_ElecExpVlvCtrlErrStsForChillrVlv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Indicates if EXV fault occurs. 0. No error (OK), 1. Motor-coil shorted, 2. Motor-coil open load. 3. Overtemperature shutdown. 5. Status unknown ", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcFioc_B_ElecExpVlvCtrlRunsStsForChillrVlv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In136", - "name": "yVcFioc_B_ElecExpVlvCtrlRunsStsForChillrVlv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Indicates if motor is moving. 0=Not moving, 1=Moving ", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcFioc_B_ElecExpVlvCtrlMotStallStsForChillrVlv": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In137", - "name": "yVcFioc_B_ElecExpVlvCtrlMotStallStsForChillrVlv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Indicates if the chiller expansion valve motor has stalled or not. 0=No stall detected 1=Stall detected ", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_n_CmprRunStsCmprSpd": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In138", - "name": "sVcFioc_n_CmprRunStsCmprSpd", - "configs": "((ALWAYS_ACTIVE))", - "description": "Compressor speed ", - "type": "Float32", - "unit": "rpm", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_I_CmprRunStsCmprI": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In139", - "name": "sVcFioc_I_CmprRunStsCmprI", - "configs": "((ALWAYS_ACTIVE))", - "description": "Compressor input current ", - "type": "Float32", - "unit": "A", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_I_CmprRunStsCmprIPha": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In140", - "name": "sVcFioc_I_CmprRunStsCmprIPha", - "configs": "((ALWAYS_ACTIVE))", - "description": "Compressor phase current", - "type": "Float32", - "unit": "A", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_Te_CmprRunStsCmprT": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In141", - "name": "sVcFioc_Te_CmprRunStsCmprT", - "configs": "((ALWAYS_ACTIVE))", - "description": "Compressor inverter termperature", - "type": "Float32", - "unit": "C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_U_CmprRunStsCmprU": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In142", - "name": "sVcFioc_U_CmprRunStsCmprU", - "configs": "((ALWAYS_ACTIVE))", - "description": "Compressor input voltage", - "type": "Float32", - "unit": "Volt", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_p_PMedChillrOut": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In143", - "name": "sVcFioc_p_PMedChillrOut", - "configs": "((ALWAYS_ACTIVE))", - "description": "Refrigerant pressure Chiller Out", - "type": "Float32", - "unit": "bar", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_Te_TMedChillrOut": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In144", - "name": "sVcFioc_Te_TMedChillrOut", - "configs": "((ALWAYS_ACTIVE))", - "description": "Temperature refirgerant chiller out", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_Te_TMedCmprOut": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In145", - "name": "sVcFioc_Te_TMedCmprOut", - "configs": "((ALWAYS_ACTIVE))", - "description": "Refrigerant temperature compressor out", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_Te_HvCooltWtrHeatrWtrTInOutl2": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In146", - "name": "sVcFioc_Te_HvCooltWtrHeatrWtrTInOutl2", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Int16", - "unit": "deg C", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcFioc_Pw_HvHeatrPwrCns2": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In147", - "name": "sVcFioc_Pw_HvHeatrPwrCns2", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Int16", - "unit": "deg C", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_X_AirFlapPosnActForCentrForFirstLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In149", - "name": "sVcCcmb_X_AirFlapPosnActForCentrForFirstLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "Air Flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_X_AirFlapPosnActForDefrst1": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In150", - "name": "sVcCcmb_X_AirFlapPosnActForDefrst1", - "configs": "((ALWAYS_ACTIVE))", - "description": "Air Flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_X_AirFlapPosnActForFlrForFirstRiLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In151", - "name": "sVcCcmb_X_AirFlapPosnActForFlrForFirstRiLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "Air Flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_X_AirFlapPosnActForFlrForSecRiLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In152", - "name": "sVcCcmb_X_AirFlapPosnActForFlrForSecRiLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "Air Flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_X_AirFlapPosnActForOsa1": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In153", - "name": "sVcCcmb_X_AirFlapPosnActForOsa1", - "configs": "((ALWAYS_ACTIVE))", - "description": "Air Flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_X_AirFlapPosnActForRecirc1": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In154", - "name": "sVcCcmb_X_AirFlapPosnActForRecirc1", - "configs": "((ALWAYS_ACTIVE))", - "description": "Air Flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_X_AirFlapPosnActForSideForFirstLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In155", - "name": "sVcCcmb_X_AirFlapPosnActForSideForFirstLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "Air Flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_X_AirFlapPosnActForVentCentrForFirstRi": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In156", - "name": "sVcCcmb_X_AirFlapPosnActForVentCentrForFirstRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "Air Flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_X_AirFlapPosnActForVentForSecRiLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In157", - "name": "sVcCcmb_X_AirFlapPosnActForVentForSecRiLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "Air Flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_X_AirFlapPosnActForVentSideForFirstRi": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In158", - "name": "sVcCcmb_X_AirFlapPosnActForVentSideForFirstRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "Air Flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_X_AirFlapPosnTActForFirstLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In159", - "name": "sVcCcmb_X_AirFlapPosnTActForFirstLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "Air Flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_X_AirFlapPosnTActForFirstRi": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In160", - "name": "sVcCcmb_X_AirFlapPosnTActForFirstRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "Air Flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_X_AirFlapPosnTActForSecLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In161", - "name": "sVcCcmb_X_AirFlapPosnTActForSecLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "Air Flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_X_AirFlapPosnTActForSecRi": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In162", - "name": "sVcCcmb_X_AirFlapPosnTActForSecRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "Air Flap position", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_Te_HvacAirTForHeatrFrnt": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In148", - "name": "sVcCcmb_Te_HvacAirTForHeatrFrnt", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcCcmb_B_HvacAirTForHeatrFrntQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In163", - "name": "yVcCcmb_B_HvacAirTForHeatrFrntQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_Te_HvacAirTForRowFirstAtFlrRi": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In164", - "name": "sVcCcmb_Te_HvacAirTForRowFirstAtFlrRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcCcmb_B_HvacAirTForRowFirstAtFlrRiQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In165", - "name": "yVcCcmb_B_HvacAirTForRowFirstAtFlrRiQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_Te_HvacAirTForRowFirstAtVentLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In166", - "name": "sVcCcmb_Te_HvacAirTForRowFirstAtVentLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcCcmb_B_HvacAirTForRowFirstAtVentLeQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In167", - "name": "yVcCcmb_B_HvacAirTForRowFirstAtVentLeQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_Te_HvacAirTForRowFirstAtVentRi": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In168", - "name": "sVcCcmb_Te_HvacAirTForRowFirstAtVentRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcCcmb_B_HvacAirTForRowFirstAtVentRiQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In169", - "name": "yVcCcmb_B_HvacAirTForRowFirstAtVentRiQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_Te_HvacAirTForRowSecAtFlrLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In170", - "name": "sVcCcmb_Te_HvacAirTForRowSecAtFlrLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcCcmb_B_HvacAirTForRowSecAtFlrLeQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In171", - "name": "yVcCcmb_B_HvacAirTForRowSecAtFlrLeQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_Te_HvacAirTForRowSecAtFlrRi": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In172", - "name": "sVcCcmb_Te_HvacAirTForRowSecAtFlrRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcCcmb_B_HvacAirTForRowSecAtFlrRiQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In173", - "name": "yVcCcmb_B_HvacAirTForRowSecAtFlrRiQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_Te_HvacAirTForRowSecAtVentLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In174", - "name": "sVcCcmb_Te_HvacAirTForRowSecAtVentLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcCcmb_B_HvacAirTForRowSecAtVentLeQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In175", - "name": "yVcCcmb_B_HvacAirTForRowSecAtVentLeQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_Te_HvacAirTForRowSecAtVentRi": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In176", - "name": "sVcCcmb_Te_HvacAirTForRowSecAtVentRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcCcmb_B_HvacAirTForRowSecAtVentRiQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In177", - "name": "yVcCcmb_B_HvacAirTForRowSecAtVentRiQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcmb_Te_HvacAirTForRowFirstAtFlrLe": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In178", - "name": "sVcCcmb_Te_HvacAirTForRowFirstAtFlrLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcCcmb_B_HvacAirTForRowFirstAtFlrLeQf": { - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/In179", - "name": "yVcCcmb_B_HvacAirTForRowFirstAtFlrLeQf", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - } - }, - "core": { - "Events": {}, - "IUMPR": {}, - "FIDs": {}, - "Ranking": {}, - "TstId": {} - }, - "dids": {}, - "nvm": {}, - "pre_procs": [], - "local_vars": { - "rVcTestRx_Z_Version": { - "type": "Float32", - "unit": "-", - "description": "Version of the VcTestRx SPM", - "max": 10000, - "min": 0, - "lsb": 1, - "offset": 0, - "class": "CVC_DISP", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/Gain1", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - } - }, - "calib_consts": { - "cVcTestRx_B_EmFrntCoolgReqSwi": { - "type": "Bool", - "unit": "-", - "description": "Wheel Motor System Front Cooling Request", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/1_From_ihfa/B_EmFrntCoolgReqSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_EmIvtrFrntCooltTSwi": { - "type": "Bool", - "unit": "-", - "description": "EM Inverter Coolant Temperature Front", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/1_From_ihfa/B_EmIvtrFrntCooltTSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_EmIvtrFrntTSwi": { - "type": "Bool", - "unit": "-", - "description": "EM Inverter Temperature Front", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/1_From_ihfa/B_EmIvtrFrntTSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_EmIvtrPwrLossEstimdFrntSwi": { - "type": "Bool", - "unit": "-", - "description": "EM Inverter Power Loss Estimated Front", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/1_From_ihfa/B_EmIvtrPwrLossEstimdFrntSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_EmMotFrntTSwi": { - "type": "Bool", - "unit": "-", - "description": "EM Motor Temperature Front", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/1_From_ihfa/B_EmMotFrntTSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_EmMotPwrLossEstimdFrntSwi": { - "type": "Bool", - "unit": "-", - "description": "EM Motor Power Loss Estimated Front", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/1_From_ihfa/B_EmMotPwrLossEstimdFrntSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_EmPwrAddlLossAvlFrntSwi": { - "type": "Bool", - "unit": "-", - "description": "EM Power Additional Loss Available Front", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/1_From_ihfa/B_EmPwrAddlLossAvlFrntSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_EmPwrAddlLossEstimdFrntSwi": { - "type": "Bool", - "unit": "-", - "description": "EM Power Additional Loss Estimated Front", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/1_From_ihfa/B_EmPwrAddlLossEstimdFrntSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Enm_EmFrntCoolgReqDbi": { - "type": "EmCoolgReq", - "unit": "-,$EmCoolgReq", - "description": "Request for increased cooling power to both electric machine and inverter debug", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/1_From_ihfa/Enm_EmFrntCoolgReqDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Pw_EmIvtrPwrLossEstimdFrntDbi": { - "type": "Float32", - "unit": "W", - "description": "EM Inverter Power Loss Estimated Front", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/1_From_ihfa/Pw_EmIvtrPwrLossEstimdFrntDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Pw_EmMotPwrLossEstimdFrntDbi": { - "type": "Float32", - "unit": "W", - "description": "EM Motor Power Loss Estimated Front", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/1_From_ihfa/Pw_EmMotPwrLossEstimdFrntDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Pw_EmPwrAddlLossAvlFrntDbi": { - "type": "Float32", - "unit": "W", - "description": "EM Power Additional Loss Available Front", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/1_From_ihfa/Pw_EmPwrAddlLossAvlFrntDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Pw_EmPwrAddlLossEstimdFrntDbi": { - "type": "Float32", - "unit": "W", - "description": "EM Power Additional Loss Estimated Front", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/1_From_ihfa/Pw_EmPwrAddlLossEstimdFrntDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Te_EmIvtrFrntCooltTDbi": { - "type": "Float32", - "unit": "deg C", - "description": "EM Inverter Coolant Temperature Front", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/1_From_ihfa/Te_EmIvtrFrntCooltTDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Te_EmIvtrFrntTDbi": { - "type": "Float32", - "unit": "deg C", - "description": "EM Inverter Temperature Front", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/1_From_ihfa/Te_EmIvtrFrntTDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Te_EmMotFrntTDbi": { - "type": "Float32", - "unit": "deg C", - "description": "EM Motor Temperature Front", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/1_From_ihfa/Te_EmMotFrntTDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_EmIvtrPwrLossEstimdReSwi": { - "type": "Bool", - "unit": "-", - "description": "EM Inverter Power Loss Estimated Rear", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/2_From_ihra/B_EmIvtrPwrLossEstimdReSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_EmIvtrReCooltTSwi": { - "type": "Bool", - "unit": "-", - "description": "EM Inverter Coolant Temperature Rear", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/2_From_ihra/B_EmIvtrReCooltTSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_EmIvtrReTSwi": { - "type": "Bool", - "unit": "-", - "description": "EM Inverter Temperature Rear", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/2_From_ihra/B_EmIvtrReTSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_EmMotPwrLossEstimdReSwi": { - "type": "Bool", - "unit": "-", - "description": "EM Motor Power Loss Estimated Rear", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/2_From_ihra/B_EmMotPwrLossEstimdReSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_EmMotReTSwi": { - "type": "Bool", - "unit": "-", - "description": "EM Motor Temperature Rear", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/2_From_ihra/B_EmMotReTSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_EmPwrAddlLossAvlReSwi": { - "type": "Bool", - "unit": "-", - "description": "EM Power Additional Loss Available Rear", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/2_From_ihra/B_EmPwrAddlLossAvlReSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_EmPwrAddlLossEstimdReSwi": { - "type": "Bool", - "unit": "-", - "description": "EM Power Additional Loss Estimated Rear", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/2_From_ihra/B_EmPwrAddlLossEstimdReSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_EmReCoolgReqSwi": { - "type": "Bool", - "unit": "-", - "description": "Wheel Motor System Rear Cooling Request", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/2_From_ihra/B_EmReCoolgReqSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Enm_EmReCoolgReqDbi": { - "type": "EmCoolgReq", - "unit": "-,$EmCoolgReq", - "description": "Request for increased cooling power to both electric machine and inverter debug", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/2_From_ihra/Enm_EmReCoolgReqDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Pw_EmIvtrPwrLossEstimdReDbi": { - "type": "Float32", - "unit": "W", - "description": "EM Inverter Power Loss Estimated Rear", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/2_From_ihra/Pw_EmIvtrPwrLossEstimdReDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Pw_EmMotPwrLossEstimdReDbi": { - "type": "Float32", - "unit": "W", - "description": "EM Motor Power Loss Estimated Rear", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/2_From_ihra/Pw_EmMotPwrLossEstimdReDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Pw_EmPwrAddlLossAvlReDbi": { - "type": "Float32", - "unit": "W", - "description": "EM Power Additional Loss Available Rear", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/2_From_ihra/Pw_EmPwrAddlLossAvlReDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Pw_EmPwrAddlLossEstimdReDbi": { - "type": "Float32", - "unit": "W", - "description": "EM Power Additional Loss Estimated Rear", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/2_From_ihra/Pw_EmPwrAddlLossEstimdReDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Te_EmIvtrReCooltTDbi": { - "type": "Float32", - "unit": "deg C", - "description": "EM Inverter Coolant Temperature Rear", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/2_From_ihra/Te_EmIvtrReCooltTDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Te_EmIvtrReTDbi": { - "type": "Float32", - "unit": "deg C", - "description": "EM Inverter Temperature Rear", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/2_From_ihra/Te_EmIvtrReTDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Te_EmMotReTDbi": { - "type": "Float32", - "unit": "deg C", - "description": "EM Motor Temperature Rear", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/2_From_ihra/Te_EmMotReTDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_AmbTRawSwi": { - "type": "Bool", - "unit": "-", - "description": "Ambient Temperature Raw", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_AmbTRawSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_CircCnctVlvElecStsSwi": { - "type": "Bool", - "unit": "-", - "description": "Circuit Connect Valve Electric Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_CircCnctVlvElecStsSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_CltPmpInCircClimaStsSwi": { - "type": "Bool", - "unit": "-", - "description": "Pump In Circuit Climatisation Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_CltPmpInCircClimaStsSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_CmprRunStsCmprIPhaSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_CmprRunStsCmprIPhaSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_CmprRunStsCmprISwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_CmprRunStsCmprISwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_CmprRunStsCmprSpdSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_CmprRunStsCmprSpdSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_CmprRunStsCmprTSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_CmprRunStsCmprTSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_CmprRunStsCmprUSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_CmprRunStsCmprUSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_CooltLvlElecStsSwi": { - "type": "Bool", - "unit": "-", - "description": "Coolant Level Electric Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_CooltLvlElecStsSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_CooltPmpInDtElecStsSwi": { - "type": "Bool", - "unit": "-", - "description": "Coolant Pump In Drivetrain Electric Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_CooltPmpInDtElecStsSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_CooltPmpInHvBattCircStsSwi": { - "type": "Bool", - "unit": "-", - "description": "Coolant Pump In High Voltage Battery Circuit Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_CooltPmpInHvBattCircStsSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_CooltPmpSpdInCircClimaActSwi": { - "type": "Bool", - "unit": "-", - "description": "Coolant Pump Speed In Circuit Climatisation Actual", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_CooltPmpSpdInCircClimaActSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_CooltPmpSpdInCircDtElecActSwi": { - "type": "Bool", - "unit": "-", - "description": "Coolant Pump Speed In Circuit Drivetrain Electric Actual", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_CooltPmpSpdInCircDtElecActSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_CooltPmpSpdInHvBattCircActSwi": { - "type": "Bool", - "unit": "-", - "description": "Coolant Pump Speed In High Voltage Battery Circuit Actual", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_CooltPmpSpdInHvBattCircActSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_CooltTAftHvacElecStsSwi": { - "type": "Bool", - "unit": "-", - "description": "Coolant Temperature After Hvac Electric Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_CooltTAftHvacElecStsSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_CooltTAftHvacSwi": { - "type": "Bool", - "unit": "-", - "description": "Coolant Temperature After Hvac", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_CooltTAftHvacSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_CooltTAftRadrDtElecStsSwi": { - "type": "Bool", - "unit": "-", - "description": "Coolant Temperature After Radiator Drivetrain Electric Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_CooltTAftRadrDtElecStsSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_CooltTAftRadrDtElecSwi": { - "type": "Bool", - "unit": "-", - "description": "Coolant Temperature After Radiator Drivetrain Electric", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_CooltTAftRadrDtElecSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_CooltTAtHvBattOutlElecStsSwi": { - "type": "Bool", - "unit": "-", - "description": "Coolant Temperature At High Voltage Battery Outlet Electric Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_CooltTAtHvBattOutlElecStsSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_CooltTAtHvBattOutlSwi": { - "type": "Bool", - "unit": "-", - "description": "Coolant Temperature At High Voltage Battery Outlet", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_CooltTAtHvBattOutlSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_CooltTBfrRadrBypVlvElecStsSwi": { - "type": "Bool", - "unit": "-", - "description": "Coolant Temperature Before Radiator Bypass Valve Electric Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_CooltTBfrRadrBypVlvElecStsSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_CooltTBfrRadrBypVlvSwi": { - "type": "Bool", - "unit": "-", - "description": "Coolant Temperature Before Radiator Bypass Valve", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_CooltTBfrRadrBypVlvSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_ElecExpVlvCtrlErrStsForChillrVlvSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_ElecExpVlvCtrlErrStsForChillrVlvSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_ElecExpVlvCtrlIninStsForChillrVlvSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_ElecExpVlvCtrlIninStsForChillrVlvSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_ElecExpVlvCtrlMotStallStsForChillrVlvDbi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_ElecExpVlvCtrlMotStallStsForChillrVlvDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_ElecExpVlvCtrlMotStallStsForChillrVlvSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_ElecExpVlvCtrlMotStallStsForChillrVlvSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_ElecExpVlvCtrlPsnActForChillrVlvSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_ElecExpVlvCtrlPsnActForChillrVlvSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_ElecExpVlvCtrlRunsStsForChillrVlvDbi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_ElecExpVlvCtrlRunsStsForChillrVlvDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_ElecExpVlvCtrlRunsStsForChillrVlvSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_ElecExpVlvCtrlRunsStsForChillrVlvSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_ElecExpVlvCtrlTWarnStsForChillrVlvSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_ElecExpVlvCtrlTWarnStsForChillrVlvSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_ElecExpVlvCtrlUerrStsForChillrVlvSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_ElecExpVlvCtrlUerrStsForChillrVlvSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_FanElecStsSwi": { - "type": "Bool", - "unit": "-", - "description": "Fan Electric Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_FanElecStsSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_FanModStsSwi": { - "type": "Bool", - "unit": "-", - "description": "Fan Mode Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_FanModStsSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_FanRlyElecStsSwi": { - "type": "Bool", - "unit": "-", - "description": "Fan Relay Electric Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_FanRlyElecStsSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_FanSpdActSwi": { - "type": "Bool", - "unit": "-", - "description": "Fan Speed Actual", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_FanSpdActSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_HvBattOnOffVlvElecStsSwi": { - "type": "Bool", - "unit": "-", - "description": "High Voltage Battery On Off Valve Electric Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_HvBattOnOffVlvElecStsSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_HvBattOnOffVlvStsSwi": { - "type": "Bool", - "unit": "-", - "description": "HvBattOnOffVlvSts", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_HvBattOnOffVlvStsSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_HvCooltWtrHeatrWtrTInOutl2Swi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_HvCooltWtrHeatrWtrTInOutl2Swi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_HvHeatrPwrCns2Swi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_HvHeatrPwrCns2Swi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_PMedChillrOutSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_PMedChillrOutSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_PMedCmprOutSwi": { - "type": "Bool", - "unit": "-", - "description": "PMedCmprOutSwi", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_PMedCmprOutSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_PropVlvToHvBattActSwi": { - "type": "Bool", - "unit": "-", - "description": "Proportional Valve To High Voltage Battery Actual", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_PropVlvToHvBattActSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_PropVlvToHvBattFltStsSwi": { - "type": "Bool", - "unit": "-", - "description": "Proportional Valve To High Voltage Battery Fault Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_PropVlvToHvBattFltStsSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_PropVlvToHvBattStsSwi": { - "type": "Bool", - "unit": "-", - "description": "Proportional Valve To High Voltage Battery Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_PropVlvToHvBattStsSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_RadrBypVlvElecStsSwi": { - "type": "Bool", - "unit": "-", - "description": "Radiator Bypass Valve Electric Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_RadrBypVlvElecStsSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_SplrShttrAgActSwi": { - "type": "Bool", - "unit": "-", - "description": "Spoiler Shutter Angle Actual", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_SplrShttrAgActSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_SplrShttrFltStsSwi": { - "type": "Bool", - "unit": "-", - "description": "Spoiler Shutter Fault Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_SplrShttrFltStsSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_SplrShttrStsSwi": { - "type": "Bool", - "unit": "-", - "description": "Spoiler Shutter Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_SplrShttrStsSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_StsOfCooltLvlSwi": { - "type": "Bool", - "unit": "-", - "description": "Status Of Coolant Level", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_StsOfCooltLvlSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_TMedChillrOutSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_TMedChillrOutSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_TMedCmprOutSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/B_TMedCmprOutSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_CircCnctVlvElecStsDbi": { - "type": "UInt8", - "unit": "-", - "description": "Circuit Connect Valve Electric Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_CircCnctVlvElecStsDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_CltPmpInCircClimaStsqDbi": { - "type": "UInt8", - "unit": "-", - "description": "Pump In Circuit Climatisation", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_CltPmpInCircClimaStsqDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_CooltLvlElecStsDbi": { - "type": "UInt8", - "unit": "-", - "description": "Coolant Level Electric Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_CooltLvlElecStsDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_CooltPmpInDtElecStsDbi": { - "type": "UInt8", - "unit": "-", - "description": "Coolant Pump In Drivetrain Electric Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_CooltPmpInDtElecStsDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_CooltTAftHvacElecStsDbi": { - "type": "UInt8", - "unit": "-", - "description": "Coolant Temperature After Hvac Electric Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_CooltTAftHvacElecStsDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_CooltTAftRadrDtElecStsDbi": { - "type": "UInt8", - "unit": "-", - "description": "Coolant Temperature After Radiator Drivetrain Electric Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_CooltTAftRadrDtElecStsDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_CooltTAtHvBattOutlElecStsDbi": { - "type": "UInt8", - "unit": "-", - "description": "Coolant Temperature At High Voltage Battery Outlet Electric Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_CooltTAtHvBattOutlElecStsDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_CooltTBfrRadrBypVlvElecStsDbi": { - "type": "UInt8", - "unit": "-", - "description": "Coolant Temperature Before Radiator Bypass Valve Electric Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_CooltTBfrRadrBypVlvElecStsDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_ElecExpVlvCtrlErrStsForChillrVlvDbi": { - "type": "UInt8", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_ElecExpVlvCtrlErrStsForChillrVlvDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_ElecExpVlvCtrlIninStsForChillrVlvDbi": { - "type": "UInt8", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_ElecExpVlvCtrlIninStsForChillrVlvDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_ElecExpVlvCtrlTWarnStsForChillrVlvDbi": { - "type": "UInt8", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_ElecExpVlvCtrlTWarnStsForChillrVlvDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_ElecExpVlvCtrlUerrStsForChillrVlvDbi": { - "type": "UInt8", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_ElecExpVlvCtrlUerrStsForChillrVlvDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_FanCpbyStsDbi": { - "type": "UInt8", - "unit": "-", - "description": "Fan Capability Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_FanCpbyStsDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_FanCpbyStsSwi": { - "type": "Bool", - "unit": "-", - "description": "Fan Capability Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_FanCpbyStsSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_FanElecStsDbi": { - "type": "UInt8", - "unit": "-", - "description": "Fan Electric Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_FanElecStsDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_FanModStsDbi": { - "type": "UInt8", - "unit": "-", - "description": "Fan Mode Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_FanModStsDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_FanRlyElecStsDbi": { - "type": "UInt8", - "unit": "-", - "description": "Fan Relay Electric Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_FanRlyElecStsDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_HvBattOnOffVlvElecStsDbi": { - "type": "UInt8", - "unit": "-", - "description": "High Voltage Battery On Off Valve Electric Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_HvBattOnOffVlvElecStsDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_HvBattOnOffVlvStsDbi": { - "type": "UInt8", - "unit": "-", - "description": "HvBattOnOffVlvSts", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_HvBattOnOffVlvStsDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_PropVlvToHvBattFltStsDbi": { - "type": "UInt8", - "unit": "-", - "description": "Proportional Valve To High Voltage Battery Fault Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_PropVlvToHvBattFltStsDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_PropVlvToHvBattStsDbi": { - "type": "UInt8", - "unit": "-", - "description": "Proportional Valve To High Voltage Battery Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_PropVlvToHvBattStsDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_RadrBypVlvElecStsDbi": { - "type": "UInt8", - "unit": "-", - "description": "Radiator Bypass Valve Electric Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_RadrBypVlvElecStsDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_SplrShttrFltStsDbi": { - "type": "UInt8", - "unit": "-", - "description": "Spoiler Shutter Fault Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_SplrShttrFltStsDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_SplrShttrStsDbi": { - "type": "UInt8", - "unit": "-", - "description": "Spoiler Shutter Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_SplrShttrStsDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_StsOfCooltLvlDbi": { - "type": "UInt8", - "unit": "-", - "description": "Status Of Coolant Level", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/D_StsOfCooltLvlDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_I_CmprRunStsCmprIDbi": { - "type": "Float32", - "unit": "A", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/I_CmprRunStsCmprIDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_I_CmprRunStsCmprIPhaDbi": { - "type": "Float32", - "unit": "A", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/I_CmprRunStsCmprIPhaDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Pw_HvHeatrPwrCns2Dbi": { - "type": "Float32", - "unit": "W", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/Pw_HvHeatrPwrCns2Dbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Te_AmbTRawDbi": { - "type": "Float32", - "unit": "deg C", - "description": "Ambient Temperature", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/Te_AmbTRawDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Te_CmprRunStsCmprTDbi": { - "type": "Float32", - "unit": "deg C", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/Te_CmprRunStsCmprTDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Te_CooltTAftHvacDbi": { - "type": "Float32", - "unit": "deg C", - "description": "Coolant Temperature After Hvac", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/Te_CooltTAftHvacDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Te_CooltTAftRadrDtElecDbi": { - "type": "Float32", - "unit": "deg C", - "description": "Coolant Temperature After Radiator Drivetrain Electric", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/Te_CooltTAftRadrDtElecDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Te_CooltTAtHvBattOutlDbi": { - "type": "Float32", - "unit": "deg C", - "description": "Coolant Temperature At High Voltage Battery Outlet", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/Te_CooltTAtHvBattOutlDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Te_CooltTBfrRadrBypVlvDbi": { - "type": "Float32", - "unit": "deg C", - "description": "Coolant Temperature Before Radiator Bypass Valve", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/Te_CooltTBfrRadrBypVlvDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Te_HvCooltWtrHeatrWtrTInOutl2Dbi": { - "type": "Float32", - "unit": "deg C", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/Te_HvCooltWtrHeatrWtrTInOutl2Dbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Te_TMedChillrOutDbi": { - "type": "Float32", - "unit": "deg C", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/Te_TMedChillrOutDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Te_TMedCmprOutDbi": { - "type": "Float32", - "unit": "deg C", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/Te_TMedCmprOutDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_U_CmprRunStsCmprUDbi": { - "type": "Float32", - "unit": "%", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/U_CmprRunStsCmprUDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_X_CooltPmpInHvBattCircStsDbi": { - "type": "Float32", - "unit": "%", - "description": "Coolant Pump In High Voltage Battery Circuit Status", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/X_CooltPmpInHvBattCircStsDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_X_CooltPmpSpdInCircClimaActDbi": { - "type": "UInt8", - "unit": "-", - "description": "Coolant Pump Speed In Circuit Climatisation Actual", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/X_CooltPmpSpdInCircClimaActDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_X_CooltPmpSpdInCircDtElecActDbi": { - "type": "Float32", - "unit": "%", - "description": "Coolant Pump Speed In Circuit Drivetrain Electric Actual", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/X_CooltPmpSpdInCircDtElecActDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_X_CooltPmpSpdInHvBattCircActDbi": { - "type": "Float32", - "unit": "%", - "description": "Coolant Pump Speed In High Voltage Battery Circuit Actual", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/X_CooltPmpSpdInHvBattCircActDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_X_ElecExpVlvCtrlPsnActForChillrVlvDbi": { - "type": "UInt16", - "unit": "%", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/X_ElecExpVlvCtrlPsnActForChillrVlvDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_X_FanSpdActDbi": { - "type": "UInt8", - "unit": "%", - "description": "Fan Speed Actual", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/X_FanSpdActDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_X_PropVlvToHvBattActDbi": { - "type": "Float32", - "unit": "%", - "description": "Proportional Valve To High Voltage Battery Actual", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/X_PropVlvToHvBattActDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_an_SplrShttrAgActDbi": { - "type": "Float32", - "unit": "deg", - "description": "Spoiler Shutter Angle Actual", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/an_SplrShttrAgActDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_n_CmprRunStsCmprSpdDbi": { - "type": "Float32", - "unit": "rpm", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/n_CmprRunStsCmprSpdDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_p_PMedChillrOutDbi": { - "type": "Float32", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/p_PMedChillrOutDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_p_PMedCmprOutDbi": { - "type": "Float32", - "unit": "-", - "description": "PMedCmprOutDbi", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/3_From_fioc/p_PMedCmprOutDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_HvBattClimaEgyReqSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/B_HvBattClimaEgyReqSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_HvBattClimaPrioReqSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/B_HvBattClimaPrioReqSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_HvBattClimaPwrEstimnSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/B_HvBattClimaPwrEstimnSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_HvBattCoolgEgyAllwdSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/B_HvBattCoolgEgyAllwdSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_HvBattCoolgPwrAllwdSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/B_HvBattCoolgPwrAllwdSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_HvBattCoolgPwrEstimnSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/B_HvBattCoolgPwrEstimnSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_HvBattCoolgPwrPredSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/B_HvBattCoolgPwrPredSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_HvBattCoolgPwrReqSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/B_HvBattCoolgPwrReqSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_HvBattCooltTSnsrStsSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/B_HvBattCooltTSnsrStsSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_HvBattHeatgEgyAllwdSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/B_HvBattHeatgEgyAllwdSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_HvBattHeatgPwrAllwdSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/B_HvBattHeatgPwrAllwdSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_HvBattHeatgPwrReqSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/B_HvBattHeatgPwrReqSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_HvBattMinFlowReqSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/B_HvBattMinFlowReqSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_HvBattTAvgSwi": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/B_HvBattTAvgSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_D_HvBattClimaPrioReqDbi": { - "type": "Float32", - "unit": "W", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/D_HvBattClimaPrioReqDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_E_HvBattClimaEgyReqDbi": { - "type": "Float32", - "unit": "J", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/E_HvBattClimaEgyReqDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_E_HvBattCoolgEgyAllwdDbi": { - "type": "Float32", - "unit": "J", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/E_HvBattCoolgEgyAllwdDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_E_HvBattHeatgEgyAllwdDbi": { - "type": "Float32", - "unit": "l/s", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/E_HvBattHeatgEgyAllwdDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Enm_HvBattCooltTSnsrStsDbi": { - "type": "HvBattSnsrSts", - "unit": "-,$HvBattSnsrSts", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/Enm_HvBattCooltTSnsrStsDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Pw_HvBattClimaPwrEstimnDbi": { - "type": "Float32", - "unit": "W", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/Pw_HvBattClimaPwrEstimnDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Pw_HvBattCoolgPwrAllwdDbi": { - "type": "Float32", - "unit": "W", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/Pw_HvBattCoolgPwrAllwdDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Pw_HvBattCoolgPwrEstimnDbi": { - "type": "Float32", - "unit": "deg C", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/Pw_HvBattCoolgPwrEstimnDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Pw_HvBattCoolgPwrPredDbi": { - "type": "Float32", - "unit": "deg C", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/Pw_HvBattCoolgPwrPredDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Pw_HvBattCoolgPwrReqDbi": { - "type": "Float32", - "unit": "J", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/Pw_HvBattCoolgPwrReqDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Pw_HvBattHeatgPwrAllwdDbi": { - "type": "Float32", - "unit": "W", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/Pw_HvBattHeatgPwrAllwdDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Pw_HvBattHeatgPwrReqDbi": { - "type": "Float32", - "unit": "W", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/Pw_HvBattHeatgPwrReqDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Q_HvBattMinFlowReqDbi": { - "type": "Float32", - "unit": "deg C", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/Q_HvBattMinFlowReqDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Te_HvBattTAvgDbi": { - "type": "Float32", - "unit": "deg C", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/4_From_hvbm/Te_HvBattTAvgDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_HmiReqForRo1VentCenLeSwi": { - "type": "Bool", - "unit": "-", - "description": "Thumbwheel Vent Center Left Switch", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/5_From_DHU/B_HmiReqForRo1VentCenLeSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_HmiReqForRo1VentCenRiSwi": { - "type": "Bool", - "unit": "-", - "description": "Thumbwheel Vent Center Right Switch", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/5_From_DHU/B_HmiReqForRo1VentCenRiSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_HmiReqForRo1VentSideLeSwi": { - "type": "Bool", - "unit": "-", - "description": "Thumbwheel Vent Side Left Switch", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/5_From_DHU/B_HmiReqForRo1VentSideLeSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_HmiReqForRo1VentSideRiSwi": { - "type": "Bool", - "unit": "-", - "description": "Thumbwheel Vent Side Right Switch", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/5_From_DHU/B_HmiReqForRo1VentSideRiSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_MaxDefOnDbi": { - "type": "Bool", - "unit": "-", - "description": "MaxDefOnDbi", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/5_From_DHU/B_MaxDefOnDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_MaxDefOnSwi": { - "type": "Bool", - "unit": "-", - "description": "MaxDefOnSwi", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/5_From_DHU/B_MaxDefOnSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_X_HmiReqForRo1VentCenLeDbi": { - "type": "UInt8", - "unit": "-", - "description": "Thumbwheel Vent Center Left", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/5_From_DHU/X_HmiReqForRo1VentCenLeDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_X_HmiReqForRo1VentCenRiDbi": { - "type": "UInt8", - "unit": "%", - "description": "Thumbwheel Vent Center Right", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/5_From_DHU/X_HmiReqForRo1VentCenRiDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_X_HmiReqForRo1VentSideLeDbi": { - "type": "UInt8", - "unit": "%", - "description": "Thumbwheel Vent Side Left", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/5_From_DHU/X_HmiReqForRo1VentSideLeDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_X_HmiReqForRo1VentSideRiDbi": { - "type": "UInt8", - "unit": "%", - "description": "Thumbwheel Vent Side Right", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/5_From_DHU/X_HmiReqForRo1VentSideRiDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_EvapTFrntQfDbi": { - "type": "Bool", - "unit": "-", - "description": "Evaporative Temperature Front Qualityfactor debug", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/8_From_CCMB/B_EvapTFrntQfDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_EvapTFrntQfSwi": { - "type": "Bool", - "unit": "-", - "description": "Evaporative Temperature Front Qualityfactor debug", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/8_From_CCMB/B_EvapTFrntQfSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_EvapTFrntSwi": { - "type": "Bool", - "unit": "-", - "description": "Evaporative Temperature Front debug", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/8_From_CCMB/B_EvapTFrntSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_MtrlSnsrTQfDbi": { - "type": "Bool", - "unit": "-", - "description": "Mathematical Sensor Temperature Qualityfactor debug", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/8_From_CCMB/B_MtrlSnsrTQfDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_MtrlSnsrTQfSwi": { - "type": "Bool", - "unit": "-", - "description": "Mathematical Sensor Temperature Qualityfactor debug", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/8_From_CCMB/B_MtrlSnsrTQfSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_B_MtrlSnsrTSwi": { - "type": "Bool", - "unit": "-", - "description": "Material Sensor Temperature debug", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/8_From_CCMB/B_MtrlSnsrTSwi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Te_EvapTFrntDbi": { - "type": "Float32", - "unit": "deg C", - "description": "Evaporative Temperature Front debug", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/8_From_CCMB/Te_EvapTFrntDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestRx_Te_MtrlSnsrTDbi": { - "type": "Float32", - "unit": "deg C", - "description": "Mathematical Sensor Temperature debug", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestRx/VcTestRx/Subsystem/VcTestRx/VcTestRx/8_From_CCMB/Te_MtrlSnsrTDbi", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - } - } -} \ No newline at end of file diff --git a/tests/powertrain_build/cnfg_files/test-repo/Models/IF/VcTestTx/pybuild_cfg/VcTestTx.yaml b/tests/powertrain_build/cnfg_files/test-repo/Models/IF/VcTestTx/pybuild_cfg/VcTestTx.yaml deleted file mode 100644 index 4e911e5..0000000 --- a/tests/powertrain_build/cnfg_files/test-repo/Models/IF/VcTestTx/pybuild_cfg/VcTestTx.yaml +++ /dev/null @@ -1,237 +0,0 @@ -######################################################## -# -# Service for output values from VcTestTx model -# -# -######################################################## -service: - ClimateAndThermalControlInternal: - properties: - - ControlOutput: - - outsignal: yVcTestTx_B_MaxDefOnDisp - property: max_defroster_state.is_enabled - # - outsignal: sVcTestTx_D_MaxDefState - # property: max_defroster_state.availability - # - outsignal: sVcTestTx_Te_AmbTMecRimSnsr - # property: AmbTMecRimSnsr.Value - # - outsignal: sVcTestTx_D_AmbTMecRimSnsrSts - # property: AmbTMecRimSnsr.Status -# # service: -# # ThermalSystemPropertiesToBattery: -# # properties: -# - CoolantTemperatureAtHighVoltageBatteryOutlet: -# - outsignal: sVcTestTx_Te_CooltTAtHvBattOutl -# - HighVoltageBatteryCoolingPowerAllowed: -# - outsignal: sVcTestTx_Pw_HvBattCoolgPwrAllwd -# - HighVoltageBatteryHeatingPowerAllowed: -# - outsignal: sVcTestTx_Pw_HvBattHeatgPwrAllwd -# - HighVoltageBatteryClimatisationEnergyAllowed: -# - outsignal: sVcTestTx_E_HvBattClimaEgyAllwd -# - TimeLeftForHighVoltageBatteryPreConditioning: -# - outsignal: sVcTestTx_t_TiLeForHvBattPreCdng -# # Add enums later -# # - HighVoltageBatteryCircuitCoolingPerformance: -# # - outsignal: sVcTestTx_Enm_HvBattCircCoolgPfmnc -# - HighVoltageBatteryActualFlow: -# - outsignal: sVcTestTx_Q_HvBattActFlow -# # Add enums later -# # - HighVoltageBatteryThermalStateActual: -# # - outsignal: sVcTestTx_Enm_HvBattThermStAct -# # service: -# # ThermalSystemPropertiesToElectricMachines: -# # properties: -# - CoolantTemperatureAfterRadiatorDrivetrainElectric: -# - outsignal: sVcTestTx_Te_CooltTAftRadrDtElec -# - CoolantFlowEstimatedInEMCircuitFront: -# - outsignal: sVcTestTx_Q_CooltFlowEstimdInEmCircFrnt -# - CoolantFlowEstimatedInEMCircuitRear: -# - outsignal: sVcTestTx_Q_CooltFlowEstimdInEmCircRe -# # Add enums later -# # - EMCircuitCoolingPerformance: -# # - outsignal: sVcTestTx_Enm_EmCircCoolgPfmnc -# - EMPowerAdditionalLossRequestFront: -# - outsignal: sVcTestTx_Pw_EmPwrAddlLossReqFrnt -# - EMPowerAdditionalLossRequestRear: -# - outsignal: sVcTestTx_Pw_EmPwrAddlLossReqRe -# # service: -# # ThermalSystemPropertiesToElectricEnergyCoordinator: -# # properties: -# - ThermalHighVoltagePowerConsumptionRequest: -# - outsignal: sVcTestTx_Pw_ThermHvPwrCnsReq -# # - LowVoltagePowerRequest: -# # - outsignal: sVcTestTx_Pw_LvElecPwrReq -# - ThermalHighVoltagePowerConsumptionEstimation: -# - outsignal: sVcTestTx_Pw_ThermHvPwrCnsEstimn -# - ThermalHighVoltageEnergyRequest: -# - outsignal: sVcTestTx_E_ThermHvEgyReq -# # - CurrentThroughLowVoltageLoads: -# # - outsignal: sVcTestTx_I_LvLoadEstimn -# service: -# ThermalSystemPropertiesToVechileEnergyManagement: -# properties: -# - PredictedHVElectricalPowerForCooling: -# - outsignal: sVcTestTx_Pw_PredHvElecPwrForCoolg -# - PredictedHVElectricalPowerForHeating: -# - outsignal: sVcTestTx_Pw_PredHvElecPwrForHeatg -# - PredictedLVElectricalPowerforThermalManagement: -# - outsignal: sVcTestTx_Pw_PredHvElecPwrForThermMngt -######################################################## -# -# Direct connection for output values of app from VcTestTx model -# To different DPs -# -# Please correct the list below with correct domains and properties -# Group signals that match together? -# -######################################################## -signals: - ##### FIOC 4/6.0.0 ####### - fioc: - - outsignal: yVcTestTx_B_CircCnctVlvReq - property: CircCnctVlvReq - - outsignal: yVcTestTx_B_HvBattOnOffVlvReq - property: HvBattOnOffVlvReq - - outsignal: sVcTestTx_Q_CooltFlowInCmptmtCirc2 - property: CooltFlowInCmptmtCirc2 - - outsignal: sVcTestTx_X_CooltPmpSpdInCircClimaReq - property: CooltPmpSpdInCircClimaReq - - outsignal: sVcTestTx_X_CooltPmpSpdInCircDtElecReq - property: CooltPmpSpdInCircDtElecReq - - outsignal: sVcTestTx_X_CooltPmpSpdInHvBattCircReq - property: CooltPmpSpdInHvBattCircReq -# DstTrvld -# EvaprVlvFrntReq -# EvaprVlvRearReq -# ExtdIntgReq - - outsignal: sVcTestTx_D_FanModReq - property: FanModReq - - outsignal: sVcTestTx_X_FanSpdReq - property: FanSpdReq -# FuHeatrTRqrd -# HvBattOnOffVlvReq - - outsignal: sVcTestTx_U_HvBattUDynMinLim2 - property: HvBattUDynMinLim2 - - outsignal: yVcTestTx_B_HvCooltHeatrEnad2 - property: HvCooltHeatrEnad2 - - outsignal: sVcTestTx_Pw_HvCooltHeatrPwrCnsAllwd2 - property: HvCooltHeatrPwrCnsAllwd2 - - outsignal: sVcTestTx_Te_HvCooltHeatrWtrTDes2 - property: HvCooltHeatrWtrTDes2 - - outsignal: sVcTestTx_X_PropVlvToHvBattReq - property: PropVlvToHvBattReq - - outsignal: yVcTestTx_B_RadrBypVlvReq - property: RadrBypVlvReq - - outsignal: yVcTestTx_B_RlyForCoolgActvnReq - property: RlyForCoolgActvnReq - - outsignal: sVcTestTx_an_SplrShttrAgReq - property: SplrShttrAgReq - - outsignal: yVcTestTx_B_SplrShttrEnaReq - property: SplrShttrEnaReq -#UsageMode - - outsignal: sVcTestTx_D_UsgModSts - property: UsgModStsForTherm - ccmb: - - outsignal: sVcTestTx_X_AirFlapPosnReqForDefrst1 - property: AirFlapPosnReqForDefrst1 - - outsignal: sVcTestTx_X_AirFlapPosnReqForSideForFirstLe - property: AirFlapPosnReqForSideForFirstLe - - outsignal: sVcTestTx_X_AirFlapPosnReqForVentSideForFirstRi - property: AirFlapPosnReqForVentSideForFirstRi - - outsignal: sVcTestTx_X_AirFlapPosnReqForCentrForFirstLe - property: AirFlapPosnReqForCentrForFirstLe - - outsignal: sVcTestTx_X_AirFlapPosnReqForVentCentrForFirstRi - property: AirFlapPosnReqForVentCentrForFirstRi - - outsignal: sVcTestTx_X_AirFlapPosnReqForFlrForFirstRiLe - property: AirFlapPosnReqForFlrForFirstRiLe - - outsignal: sVcTestTx_X_AirFlapPosnReqForFlrForSecRiLe - property: AirFlapPosnReqForFlrForSecRiLe - - outsignal: sVcTestTx_X_AirFlapPosnTReqForFirsLe - property: AirFlapPosnTReqForFirsLe - - outsignal: sVcTestTx_X_AirFlapPosnTReqForFirstRi - property: AirFlapPosnTReqForFirstRi - - outsignal: sVcTestTx_X_AirFlapPosnTReqForSecLe - property: AirFlapPosnTReqForSecLe - - outsignal: sVcTestTx_X_AirFlapPosnTReqForSecRi - property: AirFlapPosnTReqForSecRi - - outsignal: sVcTestTx_X_AirFlapPosnReqForRecirc1 - property: AirFlapPosnReqForRecirc1 - - outsignal: sVcTestTx_X_AirFlapPosnReqForOsa - property: AirFlapPosnReqForOsa - - outsignal: sVcTestTx_X_AirFlapPosnReqForVentForSecRiLe - property: AirFlapPosnReqForVentForSecRiLe - - outsignal: sVcTestTx_D_AirFlapSpdReqForAirDistbn - property: AirFlapSpdReqForAirDistbn - - outsignal: sVcTestTx_D_AirFlapSpdReqForRecirc - property: AirFlapSpdReqForRecirc - - outsignal: sVcTestTx_D_AirFlapSpdReqForTFrnt - property: AirFlapSpdReqForTFrnt - - outsignal: sVcTestTx_D_HvacActrStReq - property: HvacActrStReq - hvacsys: - - outsignal: sVcTestTx_n_HvcFanRq - property: HvacFanSet1HvacFanSpd1 - - outsignal: sVcTestTx_n_HvcFanRamp - property: HvacFanSet1HvacFanRamp1 -signal_groups: - ##### FIOC 6.0.0 ####### - fioc: - - CmprAirCdnCtrl: - - outsignal: sVcTestTx_Pw_CmprPwrLim - property: CmprAirCdnCtrlCmprPwrLim - - outsignal: yVcTestTx_B_CmprRunReq - property: CmprAirCdnCtrlCmprRunReq - - outsignal: sVcTestTx_n_CmprSpdReq - property: CmprAirCdnCtrlCmprSpdReq - - ElecExpVlvCtrl2: - - outsignal: yVcTestTx_B_EmgyModEnaForChillrVlv - property: ElecExpVlvCtrl2EmgyModEnaForChillrVlv - - outsignal: sVcTestTx_n_ChillerVlvEmgyPosReq - property: ElecExpVlvCtrl2EmgyPosnRqrdForChillrVlv - - outsignal: sVcTestTx_D_EmgyStrtDlyForChillrVlv - property: ElecExpVlvCtrl2EmgyStrtDlyForChillrVlv - - outsignal: sVcTestTx_D_IninReqForChillrVlv - property: ElecExpVlvCtrl2IninReqForChillrVlv - - outsignal: sVcTestTx_D_MotStallDetnEnaForChillrVlv - property: ElecExpVlvCtrl2MotStallDetnEnaForChillrVlv - - outsignal: yVcTestTx_B_MoveEnaForChillrVlv - property: ElecExpVlvCtrl2MoveEnaForChillrVlv - - outsignal: sVcTestTx_X_PosnReqForChillerVlv - property: ElecExpVlvCtrl2PsnRqrdForChillrVlv - # - FuelHeaterCtrl: - # - outsignal: sVcTestTx_X_ - # property: FuelHeaterCtrlFuHeatrAmbAirP - # - outsignal: sVcTestTx_X_ - # property: FuelHeaterCtrlFuHeatrDiagRqrd - # - outsignal: sVcTestTx_X_ - # property: FuelHeaterCtrlFuHeatrErrResdVal - # - outsignal: sVcTestTx_X_ - # property: FuelHeaterCtrlFuHeatrErrStsReqd - # - outsignal: sVcTestTx_X_ - # property: FuelHeaterCtrlFuHeatrFuTyp - # - outsignal: sVcTestTx_X_ - # property: FuelHeaterCtrlFuHeatrMod - # - OutdT: - # - outsignal: sVcTestTx_X_ - # property: OutdTAmbTVal - # - outsignal: sVcTestTx_X_ - # property: OutdTQly - # - VehBattU: - # - outsignal: sVcTestTx_X_ - # property: VehBattUSysU - # - outsignal: sVcTestTx_X_ - # property: VehBattUSysUQf - # - VehSpdSafe: - # - outsignal: sVcTestTx_X_ - # property: VehSpdSafeChks - # - outsignal: sVcTestTx_X_ - # property: VehSpdSafeCntr - # - outsignal: sVcTestTx_X_ - # property: VehSpdSafeMax - # - outsignal: sVcTestTx_X_ - # property: VehSpdSafeMin - # - outsignal: sVcTestTx_X_ - # property: VehSpdSafeMinMaxQf - # - outsignal: sVcTestTx_X_ - # property: VehSpdSafeNom - # - outsignal: sVcTestTx_X_ - # property: VehSpdSafeNomQf diff --git a/tests/powertrain_build/cnfg_files/test-repo/Models/IF/VcTestTx/pybuild_cfg/config_VcTestTx.json b/tests/powertrain_build/cnfg_files/test-repo/Models/IF/VcTestTx/pybuild_cfg/config_VcTestTx.json deleted file mode 100644 index 6a1cb31..0000000 --- a/tests/powertrain_build/cnfg_files/test-repo/Models/IF/VcTestTx/pybuild_cfg/config_VcTestTx.json +++ /dev/null @@ -1,3308 +0,0 @@ -{ - "version": "0.2.1", - "includes": [], - "integrity_level": "QM", - "outports": { - "sVcTestTx_X_AirFlapPosnReqForDefrst1": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out1", - "name": "sVcTestTx_X_AirFlapPosnReqForDefrst1", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_X_AirFlapPosnReqForSideForFirstLe": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out2", - "name": "sVcTestTx_X_AirFlapPosnReqForSideForFirstLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_X_AirFlapPosnReqForVentSideForFirstRi": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out3", - "name": "sVcTestTx_X_AirFlapPosnReqForVentSideForFirstRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_X_AirFlapPosnReqForCentrForFirstLe": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out4", - "name": "sVcTestTx_X_AirFlapPosnReqForCentrForFirstLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_X_AirFlapPosnReqForVentCentrForFirstRi": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out5", - "name": "sVcTestTx_X_AirFlapPosnReqForVentCentrForFirstRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_X_AirFlapPosnReqForFlrForFirstRiLe": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out6", - "name": "sVcTestTx_X_AirFlapPosnReqForFlrForFirstRiLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_X_AirFlapPosnReqForFlrForSecRiLe": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out7", - "name": "sVcTestTx_X_AirFlapPosnReqForFlrForSecRiLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_X_AirFlapPosnTReqForFirsLe": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out8", - "name": "sVcTestTx_X_AirFlapPosnTReqForFirsLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_X_AirFlapPosnTReqForFirstRi": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out9", - "name": "sVcTestTx_X_AirFlapPosnTReqForFirstRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_X_AirFlapPosnTReqForSecLe": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out10", - "name": "sVcTestTx_X_AirFlapPosnTReqForSecLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_X_AirFlapPosnTReqForSecRi": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out11", - "name": "sVcTestTx_X_AirFlapPosnTReqForSecRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_X_AirFlapPosnReqForRecirc1": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out12", - "name": "sVcTestTx_X_AirFlapPosnReqForRecirc1", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_X_AirFlapPosnReqForOsa": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out13", - "name": "sVcTestTx_X_AirFlapPosnReqForOsa", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_X_AirFlapPosnReqForVentForSecRiLe": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out15", - "name": "sVcTestTx_X_AirFlapPosnReqForVentForSecRiLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_n_HvcFanRq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out14", - "name": "sVcTestTx_n_HvcFanRq", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC Fan speed request", - "type": "UInt8", - "unit": "rpm", - "offset": 0, - "lsb": 1, - "min": 0, - "max": 255, - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_Te_AmbTMecRimSnsr": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out16", - "name": "sVcTestTx_Te_AmbTMecRimSnsr", - "configs": "((ALWAYS_ACTIVE))", - "description": "Ambient temperatute raw from FIOC to DHU", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_D_AmbTMecRimSnsrSts": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out17", - "name": "sVcTestTx_D_AmbTMecRimSnsrSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Ambient temperatute status from FIOC to DHU", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestTx_B_MaxDefOnDisp": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out18", - "name": "yVcTestTx_B_MaxDefOnDisp", - "configs": "((ALWAYS_ACTIVE))", - "description": "yVcTestTx_B_MaxDefOnDisp", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_D_MaxDefState": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out19", - "name": "sVcTestTx_D_MaxDefState", - "configs": "((ALWAYS_ACTIVE))", - "description": "MaxDefState", - "type": "Int8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestTx_B_CircCnctVlvReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out20", - "name": "yVcTestTx_B_CircCnctVlvReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Circuit Connect Valve Request", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_X_CooltPmpSpdInCircClimaReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out21", - "name": "sVcTestTx_X_CooltPmpSpdInCircClimaReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "UInt8", - "unit": "%", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_X_CooltPmpSpdInCircDtElecReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out22", - "name": "sVcTestTx_X_CooltPmpSpdInCircDtElecReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "UInt8", - "unit": "%", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_X_CooltPmpSpdInHvBattCircReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out23", - "name": "sVcTestTx_X_CooltPmpSpdInHvBattCircReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "UInt8", - "unit": "%", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_D_FanModReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out24", - "name": "sVcTestTx_D_FanModReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Fan Mode Request", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_X_FanSpdReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out25", - "name": "sVcTestTx_X_FanSpdReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Fan speed request", - "type": "UInt8", - "unit": "%", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_X_PropVlvToHvBattReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out26", - "name": "sVcTestTx_X_PropVlvToHvBattReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Proportional Valve To High Voltage Battery Request", - "type": "UInt8", - "unit": "%", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestTx_B_RadrBypVlvReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out27", - "name": "yVcTestTx_B_RadrBypVlvReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Radiator Bypass Valve Request", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestTx_B_RlyForCoolgActvnReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out28", - "name": "yVcTestTx_B_RlyForCoolgActvnReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_an_SplrShttrAgReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out29", - "name": "sVcTestTx_an_SplrShttrAgReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Shutter position request", - "type": "UInt8", - "unit": "deg", - "offset": 0, - "lsb": 1, - "min": 0, - "max": 90, - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestTx_B_SplrShttrEnaReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out30", - "name": "yVcTestTx_B_SplrShttrEnaReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Spoiler Shutter Enable Request", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_Te_CooltTAtHvBattOutl": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out31", - "name": "sVcTestTx_Te_CooltTAtHvBattOutl", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_Pw_HvBattCoolgPwrAllwd": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out32", - "name": "sVcTestTx_Pw_HvBattCoolgPwrAllwd", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_Pw_HvBattHeatgPwrAllwd": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out33", - "name": "sVcTestTx_Pw_HvBattHeatgPwrAllwd", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_E_HvBattClimaEgyAllwd": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out34", - "name": "sVcTestTx_E_HvBattClimaEgyAllwd", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "Wh", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_t_TiLeForHvBattPreCdng": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out35", - "name": "sVcTestTx_t_TiLeForHvBattPreCdng", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_Enm_HvBattCircCoolgPfmnc": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out36", - "name": "sVcTestTx_Enm_HvBattCircCoolgPfmnc", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "CoolgPfmnc", - "unit": "-,$CoolgPfmnc", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_Q_HvBattActFlow": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out37", - "name": "sVcTestTx_Q_HvBattActFlow", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_Enm_HvBattThermStAct": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out38", - "name": "sVcTestTx_Enm_HvBattThermStAct", - "configs": "((ALWAYS_ACTIVE))", - "description": "HV Battery coolant circuit actual thermal state:Unknown,HvBattOff,HvBattBal,HvBattPasCoolg,HvBattPasActvCoolg,HvBattActvCoolg,HvBattPasHeatg,HvBattPasActvHeatgFromClima,HvBattPasActvHeatgFromDtElecAndClima,HvBattActvHeatgFromClima,Degas,FailSafe", - "type": "HvBattThermSt", - "unit": "-,$HvBattThermSt", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_Pw_PredHvElecPwrForCoolg": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out39", - "name": "sVcTestTx_Pw_PredHvElecPwrForCoolg", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_Pw_PredHvElecPwrForHeatg": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out40", - "name": "sVcTestTx_Pw_PredHvElecPwrForHeatg", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_Pw_PredHvElecPwrForThermMngt": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out41", - "name": "sVcTestTx_Pw_PredHvElecPwrForThermMngt", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_Q_CooltFlowEstimdInEmCircRe": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out42", - "name": "sVcTestTx_Q_CooltFlowEstimdInEmCircRe", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "l/min", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_Te_CooltTAftRadrDtElec": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out43", - "name": "sVcTestTx_Te_CooltTAftRadrDtElec", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_Q_CooltFlowEstimdInEmCircFrnt": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out44", - "name": "sVcTestTx_Q_CooltFlowEstimdInEmCircFrnt", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "l/min", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_Enm_EmCircCoolgPfmnc": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out45", - "name": "sVcTestTx_Enm_EmCircCoolgPfmnc", - "configs": "((ALWAYS_ACTIVE))", - "description": "EM Circuit Cooling Performance", - "type": "CoolgPfmnc", - "unit": "-,$CoolgPfmnc", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_Pw_EmPwrAddlLossReqRe": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out46", - "name": "sVcTestTx_Pw_EmPwrAddlLossReqRe", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_Pw_EmPwrAddlLossReqFrnt": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out47", - "name": "sVcTestTx_Pw_EmPwrAddlLossReqFrnt", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_Pw_ThermHvPwrCnsReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out48", - "name": "sVcTestTx_Pw_ThermHvPwrCnsReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_Pw_ThermHvPwrCnsEstimn": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out50", - "name": "sVcTestTx_Pw_ThermHvPwrCnsEstimn", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_E_ThermHvEgyReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out51", - "name": "sVcTestTx_E_ThermHvEgyReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "Wh", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_n_CmprSpdReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out49", - "name": "sVcTestTx_n_CmprSpdReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestTx_B_CmprRunReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out52", - "name": "yVcTestTx_B_CmprRunReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_Pw_CmprPwrLim": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out53", - "name": "sVcTestTx_Pw_CmprPwrLim", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_Pw_HvCooltHeatrPwrCnsAllwd2": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out54", - "name": "sVcTestTx_Pw_HvCooltHeatrPwrCnsAllwd2", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_Te_HvCooltHeatrWtrTDes2": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out55", - "name": "sVcTestTx_Te_HvCooltHeatrWtrTDes2", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestTx_B_HvCooltHeatrEnad2": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out56", - "name": "yVcTestTx_B_HvCooltHeatrEnad2", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_D_UsgModSts": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out57", - "name": "sVcTestTx_D_UsgModSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "UsageMode to FIOC", - "type": "UInt8", - "unit": "", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_X_PosnReqForChillerVlv": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out58", - "name": "sVcTestTx_X_PosnReqForChillerVlv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Requested EXV position", - "type": "UInt16", - "unit": "", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestTx_B_MoveEnaForChillrVlv": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out59", - "name": "yVcTestTx_B_MoveEnaForChillrVlv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Enable the movement for the EXV. 0=Ignore commanded position. 1=Move to commanded position ", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_D_MotStallDetnEnaForChillrVlv": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out60", - "name": "sVcTestTx_D_MotStallDetnEnaForChillrVlv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Enable the stall detect function for chiller expansion valve", - "type": "UInt8", - "unit": "", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_D_IninReqForChillrVlv": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out61", - "name": "sVcTestTx_D_IninReqForChillrVlv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Initialization request. 0=No request, 1=Start initialization. 2=Waiting for Initialization.", - "type": "UInt8", - "unit": "", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_D_EmgyStrtDlyForChillrVlv": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out62", - "name": "sVcTestTx_D_EmgyStrtDlyForChillrVlv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Start delay for emergency mode", - "type": "UInt8", - "unit": "", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestTx_B_EmgyModEnaForChillrVlv": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out63", - "name": "yVcTestTx_B_EmgyModEnaForChillrVlv", - "configs": "((ALWAYS_ACTIVE))", - "description": "Enable the emergency limp home function. 0=Off, 1=On", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_U_HvBattUDynMinLim2": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out64", - "name": "sVcTestTx_U_HvBattUDynMinLim2", - "configs": "((ALWAYS_ACTIVE))", - "description": "Start delay for emergency mode", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_Q_CooltFlowInCmptmtCirc2": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out65", - "name": "sVcTestTx_Q_CooltFlowInCmptmtCirc2", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant flow compartment circuit", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_n_ChillerVlvEmgyPosReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out66", - "name": "sVcTestTx_n_ChillerVlvEmgyPosReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Enable the emergency limp home function. 0=Off, 1=On", - "type": "UInt16", - "unit": "", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_n_HvcFanRamp": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out67", - "name": "sVcTestTx_n_HvcFanRamp", - "configs": "((ALWAYS_ACTIVE))", - "description": "Enable the emergency limp home function. 0=Off, 1=On", - "type": "UInt16", - "unit": "", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_D_AirFlapSpdReqForAirDistbn": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out68", - "name": "sVcTestTx_D_AirFlapSpdReqForAirDistbn", - "configs": "((ALWAYS_ACTIVE))", - "description": "Requested first row mode distribution actuator speed", - "type": "UInt8", - "unit": "", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_D_AirFlapSpdReqForRecirc": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out69", - "name": "sVcTestTx_D_AirFlapSpdReqForRecirc", - "configs": "((ALWAYS_ACTIVE))", - "description": "Requested REC actuator speed", - "type": "UInt8", - "unit": "", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_D_AirFlapSpdReqForTFrnt": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out70", - "name": "sVcTestTx_D_AirFlapSpdReqForTFrnt", - "configs": "((ALWAYS_ACTIVE))", - "description": "Requested temperature actuator speed", - "type": "UInt8", - "unit": "", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "yVcTestTx_B_HvBattOnOffVlvReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out71", - "name": "yVcTestTx_B_HvBattOnOffVlvReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hv battery coolant shut off valve request, 1 = no flow to battery", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - }, - "sVcTestTx_D_HvacActrStReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Out72", - "name": "sVcTestTx_D_HvacActrStReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Climate control controls state of actuators with this signal. ", - "type": "UInt8", - "unit": "", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_DISP", - "width": 1 - } - }, - "inports": { - "sVcCcHvcTx_X_ActRqRo1Def": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In1", - "name": "sVcCcHvcTx_X_ActRqRo1Def", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcHvcTx_X_ActRqRo1VntSiLe": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In2", - "name": "sVcCcHvcTx_X_ActRqRo1VntSiLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcHvcTx_X_ActRqRo1VntSiRi": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In3", - "name": "sVcCcHvcTx_X_ActRqRo1VntSiRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcHvcTx_X_ActRqRo1VntCLe": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In4", - "name": "sVcCcHvcTx_X_ActRqRo1VntCLe", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcHvcTx_X_ActRqRo1VntCRi": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In5", - "name": "sVcCcHvcTx_X_ActRqRo1VntCRi", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcHvcTx_X_ActRqRo1Flr": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In6", - "name": "sVcCcHvcTx_X_ActRqRo1Flr", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcHvcTx_X_ActRqRo2Flr": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In7", - "name": "sVcCcHvcTx_X_ActRqRo2Flr", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcHvcTx_X_ActRqTRo1Le": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In8", - "name": "sVcCcHvcTx_X_ActRqTRo1Le", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcHvcTx_X_ActRqTRo1Ri": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In9", - "name": "sVcCcHvcTx_X_ActRqTRo1Ri", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcHvcTx_X_ActRqTRo2Le": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In10", - "name": "sVcCcHvcTx_X_ActRqTRo2Le", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcHvcTx_X_ActRqTRo2Ri": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In11", - "name": "sVcCcHvcTx_X_ActRqTRo2Ri", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcHvcTx_X_ActRqRec": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In12", - "name": "sVcCcHvcTx_X_ActRqRec", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcHvcTx_X_ActRqOsa": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In13", - "name": "sVcCcHvcTx_X_ActRqOsa", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcHvcTx_n_HvcFanRq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In14", - "name": "sVcCcHvcTx_n_HvcFanRq", - "configs": "(NEVER_ACTIVE)", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 4200, - "class": "CVC_EXT", - "width": 1 - }, - "sVcCcHvcTx_X_ActRqRo2Vnt": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In16", - "name": "sVcCcHvcTx_X_ActRqRo2Vnt", - "configs": "((ALWAYS_ACTIVE))", - "description": "HVAC actuator request", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 100, - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_Te_AmbTMecRimSnsr": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In15", - "name": "sVcTcTx_Te_AmbTMecRimSnsr", - "configs": "((ALWAYS_ACTIVE))", - "description": "Ambient temperature sensor from FIOC to DHU", - "type": "Float32", - "unit": "deg C", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_D_AmbTMecRimSnsrSts": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In17", - "name": "sVcTcTx_D_AmbTMecRimSnsrSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "Ambient temperature sensor status from FIOC to DHU", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcAcHmiTx_D_MaxDefState": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In18", - "name": "sVcAcHmiTx_D_MaxDefState", - "configs": "((ALWAYS_ACTIVE))", - "description": "Test signal to check in unittests", - "type": "Int8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcAcHmiTx_B_MaxDefOnDisp": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In19", - "name": "yVcAcHmiTx_B_MaxDefOnDisp", - "configs": "((ALWAYS_ACTIVE))", - "description": "Test signal to check in unittests", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcTcTx_B_CircCnctVlvReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In20", - "name": "yVcTcTx_B_CircCnctVlvReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Circuit Connect Valve Request", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_X_CooltPmpSpdInCircClimaReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In21", - "name": "sVcTcTx_X_CooltPmpSpdInCircClimaReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_X_CooltPmpSpdInCircDtElecReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In22", - "name": "sVcTcTx_X_CooltPmpSpdInCircDtElecReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_X_CooltPmpSpdInHvBattCircReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In23", - "name": "sVcTcTx_X_CooltPmpSpdInHvBattCircReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_D_FanModReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In24", - "name": "sVcTcTx_D_FanModReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Fan Mode Request", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_X_FanSpdReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In25", - "name": "sVcTcTx_X_FanSpdReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Fan speed request", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_X_PropVlvToHvBattReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In26", - "name": "sVcTcTx_X_PropVlvToHvBattReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Proportional Valve To High Voltage Battery Request", - "type": "Float32", - "unit": "%", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcTcTx_B_RadrBypVlvReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In27", - "name": "yVcTcTx_B_RadrBypVlvReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Radiator Bypass Valve Request", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcTcTx_B_RlyForCoolgActvnReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In28", - "name": "yVcTcTx_B_RlyForCoolgActvnReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_an_SplrShttrAgReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In29", - "name": "sVcTcTx_an_SplrShttrAgReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Shutter position request", - "type": "Float32", - "unit": "deg", - "offset": "-", - "lsb": "-", - "min": 0, - "max": 90, - "class": "CVC_EXT", - "width": 1 - }, - "yVcTcTx_B_SplrShttrEnaReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In30", - "name": "yVcTcTx_B_SplrShttrEnaReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Spoiler Shutter Enable Request", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_Te_CooltTAtHvBattOutl": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In53", - "name": "sVcTcTx_Te_CooltTAtHvBattOutl", - "configs": "((ALWAYS_ACTIVE))", - "description": "Coolant Temperature At High Voltage Battery Outlet", - "type": "Float32", - "unit": "deg C-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_Pw_HvBattCoolgPwrAllwd": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In31", - "name": "sVcTcTx_Pw_HvBattCoolgPwrAllwd", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hv Batt Cooling Power Allowed", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_Pw_HvBattHeatgPwrAllwd": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In32", - "name": "sVcTcTx_Pw_HvBattHeatgPwrAllwd", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_E_HvBattClimaEgyAllwd": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In33", - "name": "sVcTcTx_E_HvBattClimaEgyAllwd", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_t_TiLeForHvBattPreCdng": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In34", - "name": "sVcTcTx_t_TiLeForHvBattPreCdng", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_Enm_HvBattCircCoolgPfmnc": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In35", - "name": "sVcTcTx_Enm_HvBattCircCoolgPfmnc", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "CoolgPfmnc", - "unit": "-,$CoolgPfmnc", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_Q_HvBattActFlow": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In36", - "name": "sVcTcTx_Q_HvBattActFlow", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_Enm_HvBattThermStAct": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In37", - "name": "sVcTcTx_Enm_HvBattThermStAct", - "configs": "((ALWAYS_ACTIVE))", - "description": "HV Battery coolant circuit actual thermal state:'HvBattOff', 'HvBattActvHeatgFromClima', 'HvBattBal', 'HvBattActvCoolg', 'HvBattPasCoolg', 'HvBattPasActvCoolg', 'HvBattPasHeatg', 'HvBattPasActvHeatgFromClima', 'HvBattPasActvHeatgFromDtElecAndClima', 'Degas', 'FailSafe'", - "type": "HvBattThermSt", - "unit": "-,$HvBattThermSt", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_Pw_PredHvElecPwrForCoolg": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In38", - "name": "sVcTcTx_Pw_PredHvElecPwrForCoolg", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_Pw_PredHvElecPwrForHeatg": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In39", - "name": "sVcTcTx_Pw_PredHvElecPwrForHeatg", - "configs": "((ALWAYS_ACTIVE))", - "description": "Spoiler Shutter Enable Request", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_Pw_PredHvElecPwrForThermMngt": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In40", - "name": "sVcTcTx_Pw_PredHvElecPwrForThermMngt", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_Q_CooltFlowEstimdInEmCircRe": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In41", - "name": "sVcTcTx_Q_CooltFlowEstimdInEmCircRe", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_Te_CooltTAftRadrDtElec": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In42", - "name": "sVcTcTx_Te_CooltTAftRadrDtElec", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_Q_CooltFlowEstimdInEmCircFrnt": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In43", - "name": "sVcTcTx_Q_CooltFlowEstimdInEmCircFrnt", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_Enm_EmCircCoolgPfmnc": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In44", - "name": "sVcTcTx_Enm_EmCircCoolgPfmnc", - "configs": "((ALWAYS_ACTIVE))", - "description": "EM Circuit Cooling Performance", - "type": "CoolgPfmnc", - "unit": "-,$CoolgPfmnc", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_Pw_EmPwrAddlLossReqRe": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In45", - "name": "sVcTcTx_Pw_EmPwrAddlLossReqRe", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_Pw_EmPwrAddlLossReqFrnt": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In46", - "name": "sVcTcTx_Pw_EmPwrAddlLossReqFrnt", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_Pw_ThermHvPwrCnsReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In47", - "name": "sVcTcTx_Pw_ThermHvPwrCnsReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_Pw_ThermHvPwrCnsEstimn": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In49", - "name": "sVcTcTx_Pw_ThermHvPwrCnsEstimn", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "W", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTcTx_E_ThermHvEgyReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In50", - "name": "sVcTcTx_E_ThermHvEgyReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "Wh", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcAcTx_n_CmprSpdReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In51", - "name": "sVcAcTx_n_CmprSpdReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcAcTx_B_CmprRunReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In52", - "name": "yVcAcTx_B_CmprRunReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcAcTx_Pw_CmprPwrLim": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In54", - "name": "sVcAcTx_Pw_CmprPwrLim", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcAcTx_Pw_HvCooltHeatrPwrCnsAllwd2": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In55", - "name": "sVcAcTx_Pw_HvCooltHeatrPwrCnsAllwd2", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcAcTx_Te_HvCooltHeatrWtrTDes2": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In56", - "name": "sVcAcTx_Te_HvCooltHeatrWtrTDes2", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcAcTx_B_HvCooltHeatrEnad2": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In57", - "name": "yVcAcTx_B_HvCooltHeatrEnad2", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcTdSigHub_D_UsgModSts": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In48", - "name": "sVcTdSigHub_D_UsgModSts", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "UInt8", - "unit": "-", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcAcTx_U_HvBattUDynMinLim2": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In58", - "name": "sVcAcTx_U_HvBattUDynMinLim2", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcAcTx_Q_CooltFlowInCmptmtCirc2": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In59", - "name": "sVcAcTx_Q_CooltFlowInCmptmtCirc2", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcAcTx_B_ChillrVlvMoveEna": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In60", - "name": "yVcAcTx_B_ChillrVlvMoveEna", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcAcTx_Z_ChillerVlvMotStallDetnEna": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In61", - "name": "sVcAcTx_Z_ChillerVlvMotStallDetnEna", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcAcTx_B_ChillrVlvEmgyModEna": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In62", - "name": "yVcAcTx_B_ChillrVlvEmgyModEna", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcAcTx_Z_ChillrVlvIninReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In63", - "name": "sVcAcTx_Z_ChillrVlvIninReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcAcTx_Z_ChillerVlvEmgyStartDly": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In64", - "name": "sVcAcTx_Z_ChillerVlvEmgyStartDly", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcAcTx_n_ChillerVlvEmgyPosReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In65", - "name": "sVcAcTx_n_ChillerVlvEmgyPosReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Float32", - "unit": "", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "sVcAcTx_n_ChillerVlvPosReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In66", - "name": "sVcAcTx_n_ChillerVlvPosReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "", - "type": "Int16", - "unit": "", - "offset": 0, - "lsb": 1, - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - }, - "yVcTcTx_B_HvBattOnOffVlvReq": { - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/In67", - "name": "yVcTcTx_B_HvBattOnOffVlvReq", - "configs": "((ALWAYS_ACTIVE))", - "description": "Hv battery coolant shut off valve request, 1 = no flow to battery", - "type": "Bool", - "unit": "-", - "offset": "-", - "lsb": "-", - "min": "-", - "max": "-", - "class": "CVC_EXT", - "width": 1 - } - }, - "core": { - "Events": {}, - "IUMPR": {}, - "FIDs": {}, - "Ranking": {}, - "TstId": {} - }, - "dids": {}, - "nvm": {}, - "pre_procs": [], - "local_vars": { - "rVcTestTx_Z_Version": { - "type": "Float32", - "unit": "-", - "description": "Version of the VcTestTx SPM", - "max": 10000, - "min": 0, - "lsb": 1, - "offset": 0, - "class": "CVC_DISP", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/Gain1", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - } - }, - "calib_consts": { - "cVcTestTx_B_HvcFanRampSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_To_HBMF/B_HvcFanRampSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_HvcFanRqSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_To_HBMF/B_HvcFanRqSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_n_HvcFanRqDb": { - "type": "Float32", - "unit": "rpm", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_To_HBMF/n_HvcFanRqDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_nd_HvcFanRampDb": { - "type": "UInt16", - "unit": "rpm/s", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_To_HBMF/nd_HvcFanRampDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_AirFlapPosnReqForCentrForFirstLeSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/B_AirFlapPosnReqForCentrForFirstLeSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_AirFlapPosnReqForDefrst1Sw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/B_AirFlapPosnReqForDefrst1Sw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_AirFlapPosnReqForFlrForFirstRiLeSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/B_AirFlapPosnReqForFlrForFirstRiLeSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_AirFlapPosnReqForFlrForSecRiLeSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/B_AirFlapPosnReqForFlrForSecRiLeSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_AirFlapPosnReqForOsaSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/B_AirFlapPosnReqForOsaSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_AirFlapPosnReqForRecirc1Sw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/B_AirFlapPosnReqForRecirc1Sw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_AirFlapPosnReqForSideForFirstLeSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/B_AirFlapPosnReqForSideForFirstLeSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_AirFlapPosnReqForVentCentrForFirstRiSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/B_AirFlapPosnReqForVentCentrForFirstRiSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_AirFlapPosnReqForVentForSecRiLeSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/B_AirFlapPosnReqForVentForSecRiLeSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_AirFlapPosnReqForVentSideForFirstRiSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/B_AirFlapPosnReqForVentSideForFirstRiSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_AirFlapPosnTReqForFirsLeSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/B_AirFlapPosnTReqForFirsLeSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_AirFlapPosnTReqForFirstRiSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/B_AirFlapPosnTReqForFirstRiSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_AirFlapPosnTReqForSecLeSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/B_AirFlapPosnTReqForSecLeSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_AirFlapPosnTReqForSecRiSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/B_AirFlapPosnTReqForSecRiSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_AirFlapSpdReqForAirDistbnSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/B_AirFlapSpdReqForAirDistbnSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_AirFlapSpdReqForRecircSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/B_AirFlapSpdReqForRecircSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_AirFlapSpdReqForTFrntSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/B_AirFlapSpdReqForTFrntSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_HvacActrStReqSw1": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/B_HvacActrStReqSw1", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_D_AirFlapSpdReqForAirDistbnDb": { - "type": "UInt8", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/D_AirFlapSpdReqForAirDistbnDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_D_AirFlapSpdReqForRecircDb": { - "type": "UInt8", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/D_AirFlapSpdReqForRecircDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_D_AirFlapSpdReqForTFrntDb": { - "type": "UInt8", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/D_AirFlapSpdReqForTFrntDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_D_HvacActrStReqDb1": { - "type": "UInt8", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/D_HvacActrStReqDb1", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_X_AirFlapPosnReqForCentrForFirstLeDb": { - "type": "Float32", - "unit": "%", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/X_AirFlapPosnReqForCentrForFirstLeDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_X_AirFlapPosnReqForDefrst1Db": { - "type": "Float32", - "unit": "%", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/X_AirFlapPosnReqForDefrst1Db", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_X_AirFlapPosnReqForFlrForFirstRiLeDb": { - "type": "Float32", - "unit": "%", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/X_AirFlapPosnReqForFlrForFirstRiLeDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_X_AirFlapPosnReqForFlrForSecRiLeDb": { - "type": "Float32", - "unit": "%", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/X_AirFlapPosnReqForFlrForSecRiLeDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_X_AirFlapPosnReqForOsaDb": { - "type": "Float32", - "unit": "%", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/X_AirFlapPosnReqForOsaDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_X_AirFlapPosnReqForRecirc1Db": { - "type": "Float32", - "unit": "%", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/X_AirFlapPosnReqForRecirc1Db", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_X_AirFlapPosnReqForSideForFirstLeDb": { - "type": "Float32", - "unit": "%", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/X_AirFlapPosnReqForSideForFirstLeDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_X_AirFlapPosnReqForVentCentrForFirstRiDb": { - "type": "Float32", - "unit": "%", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/X_AirFlapPosnReqForVentCentrForFirstRiDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_X_AirFlapPosnReqForVentForSecRiLeDb": { - "type": "Float32", - "unit": "%", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/X_AirFlapPosnReqForVentForSecRiLeDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_X_AirFlapPosnReqForVentSideForFirstRiDb": { - "type": "Float32", - "unit": "%", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/X_AirFlapPosnReqForVentSideForFirstRiDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_X_AirFlapPosnTReqForFirsLeDb": { - "type": "Float32", - "unit": "%", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/X_AirFlapPosnTReqForFirsLeDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_X_AirFlapPosnTReqForFirstRiDb": { - "type": "Float32", - "unit": "%", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/X_AirFlapPosnTReqForFirstRiDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_X_AirFlapPosnTReqForSecLeDb": { - "type": "Float32", - "unit": "%", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/X_AirFlapPosnTReqForSecLeDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_X_AirFlapPosnTReqForSecRiDb": { - "type": "Float32", - "unit": "%", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/HvcTx_to_CCMB/X_AirFlapPosnTReqForSecRiDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_AmbTMecRimSnsrStsSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_DriverInfo/B_AmbTMecRimSnsrStsSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_AmbTMecRimSnsrSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_DriverInfo/B_AmbTMecRimSnsrSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_Te_AmbTMecRimSnsrDb": { - "type": "Float32", - "unit": "deg C", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_DriverInfo/Te_AmbTMecRimSnsrDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_Te_AmbTMecRimSnsrStsDb": { - "type": "UInt8", - "unit": "deg C", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_DriverInfo/Te_AmbTMecRimSnsrStsDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_ChillerVlvEmgyPosReqSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_ChillerVlvEmgyPosReqSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_CircCnctVlvReqDb": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_CircCnctVlvReqDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_CircCnctVlvReqSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_CircCnctVlvReqSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_CmprPwrLimSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_CmprPwrLimSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_CmprRunReqDb": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_CmprRunReqDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_CmprRunReqSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_CmprRunReqSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_CmprSpdReqSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_CmprSpdReqSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_CooltFlowInCmptmtCirc2Sw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_CooltFlowInCmptmtCirc2Sw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_CooltPmpSpdInCircClimaReqSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_CooltPmpSpdInCircClimaReqSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_CooltPmpSpdInCircDtElecReqSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_CooltPmpSpdInCircDtElecReqSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_CooltPmpSpdInHvBattCircReqSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_CooltPmpSpdInHvBattCircReqSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_EmgyModEnaForChillrVlvDb": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_EmgyModEnaForChillrVlvDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_EmgyModEnaForChillrVlvSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_EmgyModEnaForChillrVlvSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_EmgyStrtDlyForChillrVlvSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_EmgyStrtDlyForChillrVlvSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_FanModReqSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_FanModReqSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_FanSpdReqSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_FanSpdReqSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_HvBattOnOffVlvReqDb": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_HvBattOnOffVlvReqDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_HvBattOnOffVlvReqSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_HvBattOnOffVlvReqSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_HvBattUDynMinLim2Sw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_HvBattUDynMinLim2Sw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_HvCooltHeatrEnad2Db": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_HvCooltHeatrEnad2Db", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_HvCooltHeatrEnad2Sw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_HvCooltHeatrEnad2Sw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_HvCooltHeatrPwrCnsAllwd2Sw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_HvCooltHeatrPwrCnsAllwd2Sw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_HvCooltHeatrWtrTDes2Sw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_HvCooltHeatrWtrTDes2Sw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_IninReqForChillrVlvSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_IninReqForChillrVlvSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_MotStallDetnEnaForChillrVlvSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_MotStallDetnEnaForChillrVlvSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_MoveEnaForChillrVlvDb": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_MoveEnaForChillrVlvDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_MoveEnaForChillrVlvSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_MoveEnaForChillrVlvSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_PosnReqForChillerVlvSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_PosnReqForChillerVlvSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_PropVlvToHvBattReqSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_PropVlvToHvBattReqSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_RadrBypVlvReqDb": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_RadrBypVlvReqDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_RadrBypVlvReqSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_RadrBypVlvReqSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_RlyForCoolgActvnReqDb": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_RlyForCoolgActvnReqDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_RlyForCoolgActvnReqSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_RlyForCoolgActvnReqSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_SplrShttrAgReqSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_SplrShttrAgReqSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_SplrShttrEnaReqDb": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_SplrShttrEnaReqDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_SplrShttrEnaReqSw": { - "type": "Bool", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/B_SplrShttrEnaReqSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_D_EmgyStrtDlyForChillrVlvDb": { - "type": "UInt8", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/D_EmgyStrtDlyForChillrVlvDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_D_FanModReqDb": { - "type": "UInt8", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/D_FanModReqDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_D_IninReqForChillrVlvDb": { - "type": "UInt8", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/D_IninReqForChillrVlvDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_D_MotStallDetnEnaForChillrVlvDb": { - "type": "UInt8", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/D_MotStallDetnEnaForChillrVlvDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_Pw_CmprPwrLimDb": { - "type": "Float32", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/Pw_CmprPwrLimDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_Pw_HvCooltHeatrPwrCnsAllwd2Db": { - "type": "Float32", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/Pw_HvCooltHeatrPwrCnsAllwd2Db", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_Q_CooltFlowInCmptmtCirc2Db": { - "type": "Float32", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/Q_CooltFlowInCmptmtCirc2Db", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_Te_HvCooltHeatrWtrTDes2Db": { - "type": "Float32", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/Te_HvCooltHeatrWtrTDes2Db", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_U_HvBattUDynMinLim2Db": { - "type": "Float32", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/U_HvBattUDynMinLim2Db", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_X_CooltPmpSpdInCircClimaReqDb": { - "type": "Float32", - "unit": "%", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/X_CooltPmpSpdInCircClimaReqDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_X_CooltPmpSpdInCircDtElecReqDb": { - "type": "Float32", - "unit": "%", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/X_CooltPmpSpdInCircDtElecReqDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_X_CooltPmpSpdInHvBattCircReqDb": { - "type": "Float32", - "unit": "%", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/X_CooltPmpSpdInHvBattCircReqDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_X_FanSpdReqDb": { - "type": "Float32", - "unit": "%", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/X_FanSpdReqDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_X_PosnReqForChillerVlvDb": { - "type": "Int16", - "unit": "%", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/X_PosnReqForChillerVlvDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_X_PropVlvToHvBattReqDb": { - "type": "Float32", - "unit": "%", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/X_PropVlvToHvBattReqDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_an_SplrShttrAgReqDb": { - "type": "Float32", - "unit": "deg", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/an_SplrShttrAgReqDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_n_ChillerVlvEmgyPosReqDb": { - "type": "Float32", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/n_ChillerVlvEmgyPosReqDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_n_CmprSpdReqDb": { - "type": "Float32", - "unit": "-", - "description": "", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_FIOC/n_CmprSpdReqDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_MaxDefOnDispDb": { - "type": "Bool", - "unit": "-", - "description": "MaxDefOnDispDb", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_HMI/B_MaxDefOnDispDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_MaxDefOnDispSw": { - "type": "Bool", - "unit": "-", - "description": "MaxDefOnDispSw", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_HMI/B_MaxDefOnDispSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_B_MaxDefStateSw": { - "type": "Bool", - "unit": "-", - "description": "MaxDefStateSw", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_HMI/B_MaxDefStateSw", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - }, - "cVcTestTx_D_MaxDefStateDb": { - "type": "Int8", - "unit": "-", - "description": "MaxDefStateDb", - "max": "-", - "min": "-", - "lsb": 1, - "offset": 0, - "class": "CVC_CAL", - "handle": "VcTestTx/VcTestTx/Subsystem/VcTestTx/VcTestTx/TcTx_To_HMI/D_MaxDefStateDb", - "configs": "((ALWAYS_ACTIVE))", - "width": 1 - } - } -} \ No newline at end of file diff --git a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_FunctionIDs.csv b/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_FunctionIDs.csv deleted file mode 100644 index afe8269..0000000 --- a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_FunctionIDs.csv +++ /dev/null @@ -1,581 +0,0 @@ -;;;;PROJECTS; -Model name;Function Id Name;Description;Comments;ClimCtr;Old Id -VcAesObd;VcFiAmbPCompPlausMon;VcFi forAmbient Pressure Rationality Monitor (comparison to other sensor at eng off);;;ATPR -VcAesObd;VcFiCacPCompPlausMon;VcFi for CAC Pressure Rationality Monitor (comparison to other sensor at eng off);;;CACPR -VcAesObd;VcFiExhMnfldPCompPlausMon;VcFi for Exhaust Manifold Pressure Diff Rationality Monitor (comparison to other sensor at eng off);;;EXHMPDR -VcAesObd;VcFiIntkMnfldPCompPlausMon;VcFi for Intake Manifold Pressure Diff Rationality Monitor (comparison to other sensor at eng off);;;MAPIMPDR -VcAesObd;VcFiScPCompPlausMon;VcFi for Supercharger Pressure Rationality Monitor (comparison to other sensor at eng off);;;SCPR -VcAesObd;VcFiScPAmbPPlausMon;VcFi for SC Pressure Sensor diff vs Ambient Pressure Sensor Rationality Monitor;;;SCPAMBP -VcAesObd;VcFiCacPAmbPPlausMon;VcFi for CAC Pressure Sensor diff vs Ambient pressure sensor rationality monitor;;;CACPAMBP -VcAesObd;VcFiCacPIntkPPlausMon;VcFi for CAC pressure sensor vs Intake Manifold Pressure Diff Rationality Monitor;;;CACPINTK -VcAesObd;VcFiIntkMnfldPMdlPlausMon;VcFi for Intake Manifold Rationality Monitor (comparison to model);;;MAPR -VcAesMapM;VcFiIntkMnfldPMdlPlausMon;VcFi for Intake Manifold Rationality Monitor (comparison to model);;;MAPR -VcAesObd;VcFiIntkMnfldFlwMdlPlausMon;VcFi for MAF Rationality Monitor;;;MAFR -VcAesObd;VcFiPCVLeakMon;VcFi for PCV Leakage monitor;;; -VcAesObd;VcFiFsAbvOpen;VcFi for opening turbo compressor Air Bypass Valve;;;FS_ABVOP -VcAesObd;VcFiFsMafCorrInh;VcFi for inhibition of air flow mass meter correction;;;FS_AFCIN -VcAesObd;VcFiFsBoostPCorrInh;VcFi for inhibition of boost pressure correction;;;FS_BCRIN -VcAesObd;VcFiFsWstGateOpen;VcFi for opening waste gate (boost pressure off);;;FS_BSOFF -VcAesObd;VcFiFsEgrOff;VcFi for turning off EGR control and closing the EGR-valve;;;FS_EGROF -VcAesObd;VcFiFsExhMnfldPCorr;VcFi for inhibition of exhaust manifold pressure correction;;;FS_EPCIN -VcAesObd;VcFiFsMafLrngOff;VcFi for inhibiting use of MAF learning;;; -VcAesObd;VcFiFsAfCorrInh;VcFi for A/F Correction Inhibition;;;FS_FLCIN -VcAesObd;VcFiFsHpTrboBypOpen;VcFi for opening HP bypass;;;FS_HPBOP -VcAesObd;VcFiFsAirFlwCorrInc;VcFi for Increase air flow correction limits;Skall denna vara med i GEP3?;;FS_IAFCL -VcAesObd;VcFiFsIntkMnfldPCorrInh;VcFi for inhibition of intake manifold pressure correction;;;FS_IPCIN -VcAesObd;VcFiFsScBypOpen;VcFi for turning off supercharger and opening supercharger bypass valve;;;FS_SCBYO -VcAesObd;VcFiFsScPUseDftVal;VcFi for Inhibit use of SC pressure sensor (use ambient);;;FS_SCPIN -VcAesObd;VcFiFsEgrFrzn;VcFi to indicate frozen EGR in cold condition;Här kanske vi borde kalla fiden för vad den gör, isf vid vilket fel den aktiveras!;;FS_SPR3 -VcAesObd;VcFiFsThrAdpInhAdp;VcFi for inhibiting throttle adaptation;;;FS_TADPI -VcAesObd;VcFiFsThrCtrlOff;VcFi for turning off throttle control and make the throttle to go to it's limp home position;;;FS_THOFF -VcAesObd;VcFiFsThrServoModelOff;VcFi for using measured throttle position instead of throttle servo model;;;FS_THROF -VcAesObd;VcFiFsTrqLimFastActv;VcFi for activating fast ramping in of torque limit;;;FS_TQLFS -VcAesObd;VcFiFsTrqLimActv1;VcFi for activating torque limit 1;;;FS_TRQL1 -VcAesObd;VcFiFsTrqLimActv2;VcFi for activating torque limit 2;;;FS_TRQL2 -VcAesObd;VcFiFsTrqLimActv3;VcFi for activating torque limit 3;;;FS_TRQL3 -VcAesObd;VcFiFsTrqLimActv4;VcFi for activating torque limit 4;;;FS_TRQL4 -VcAesObd;VcFiFsTrqLimActv5;VcFi for activating torque limit 5;;;FS_TRQL5 -VcAesObd;VcFiFsTrqLimActv6;VcFi for activating torque limit 6;;;FS_TRQL6 -VcAesObd;VcFiFsTrqLimActv7;VcFi for activating torque limit 7;;;FS_TRQL7 -VcAesObd;VcFiFsVntOpen;VcFi for opening VNT;;;FS_VNTOP -VcAesRcfgM;VcFiFsAbvOpen;VcFi for opening turbo compressor Air Bypass Valve;;;FS_ABVOP -VcAesRcfgM;VcFiFsMafCorrInh;VcFi for inhibition of air flow mass meter correction;;;FS_AFCIN -VcAesRcfgM;VcFiFsMafLrngOff;VcFi for inhibiting use of MAF learning;;; -VcAesRcfgM;VcFiFsBoostPCorrInh;VcFi for inhibition of boost pressure correction;;;FS_BCRIN -VcAesRcfgM;VcFiFsWstGateOpen;VcFi for opening waste gate (boost pressure off);;;FS_BSOFF -VcAesRcfgM;VcFiFsEgrOff;VcFi for turning off EGR control. To be used for system failures.;;;FS_EGROF -VcAesRcfgM;VcFiFsExhMnfldPCorr;VcFi for inhibition of exhaust manifold pressure correction;;;FS_EPCIN -VcAesRcfgM;VcFiFsAfCorrInh;VcFi for A/F Correction Inhibition;;;FS_FLCIN -VcAesRcfgM;VcFiFsHpTrboBypOpen;VcFi for opening HP bypass;;;FS_HPBOP -VcAesRcfgM;VcFiFsAirFlwCorrInc;VcFi for Increase air flow correction limits;Skall denna vara med i GEP3?;;FS_IAFCL -VcAesRcfgM;VcFiFsIntkMnfldPCorrInh;VcFi for inhibition of intake manifold pressure correction;;;FS_IPCIN -VcAesRcfgM;VcFiFsScBypOpen;VcFi for turning off supercharger and opening supercharger bypass valve;;;FS_SCBYO -VcAesRcfgM;VcFiFsScPUseDftVal;VcFi for Inhibit use of SC pressure sensor (use ambient);;;FS_SCPIN -VcAesRcfgM;VcFiFsSrEgrFrzn;VcFi to indicate frozen SR EGR valve in cold condition;;;FS_SPR3 -VcAesRcfgM;VcFiFsLrEgrFrzn;VcFi to indicate frozen LR EGR valve in cold condition;;;FS_SPR3 -VcAesRcfgM;VcFiFsThrAdpInhAdp;VcFi for inhibiting throttle adaptation;;;FS_TADPI -VcAesRcfgM;VcFiFsThrCtrlOff;VcFi for turning off throttle control and make the throttle to go to it's limp home position;;;FS_THOFF -VcAesRcfgM;VcFiFsThrServoModelOff;VcFi for using measured throttle position instead of throttle servo model;;;FS_THROF -VcAesRcfgM;VcFiFsTrqLimFastActv;VcFi for activating fast ramping in of torque limit;;;FS_TQLFS -VcAesRcfgM;VcFiFsTrqLimActv1;VcFi for activating torque limit 1;;;FS_TRQL1 -VcAesRcfgM;VcFiFsTrqLimActv2;VcFi for activating torque limit 2;;;FS_TRQL2 -VcAesRcfgM;VcFiFsTrqLimActv3;VcFi for activating torque limit 3;;;FS_TRQL3 -VcAesRcfgM;VcFiFsTrqLimActv4;VcFi for activating torque limit 4;;;FS_TRQL4 -VcAesRcfgM;VcFiFsTrqLimActv5;VcFi for activating torque limit 5;;;FS_TRQL5 -VcAesRcfgM;VcFiFsTrqLimActv6;VcFi for activating torque limit 6;;;FS_TRQL6 -VcAesRcfgM;VcFiFsTrqLimActv7;VcFi for activating torque limit 7;;;FS_TRQL7 -VcAesRcfgM;VcFiFsVntOpen;VcFi for opening VNT;;;FS_VNTOP -VcAesRcfgM;VcFiFsPowerPulse;VcFi for power pulse failsafe;;;FS_PowerPulse -VcAesRcfgM;VcFiFsPowerPulseRly1;VcFi for failsafe power pulse relay 1 stuck;;;FS_PowerPulseRly1 -VcAesRcfgM;VcFiFsPowerPulseRly2;VcFi for failsafe power pulse relay 2 stuck;;;FS_PowerPulseRly2 -VcAesRcfgM;VcFiFsEgrTest;VcFi for individual testing of EGR system;;; -VcAesRcfgM;VcFiFSEChrgrOff;VcFi for turning off Echarger control;;; -VcAesRcfgM;VcFiFsEgrTPeak;VcFi to change sensitivity for intake temp peak monitor;;; -VcAesRcfgM;VcFiFsLPBoostPCorrInh;VcFi to inhibit use of LP boost sensor;;; -VcAesRcfgM;VcFiFsLpEgrThrS;VcFi to indicate faults on LP EGR throttle position sensor and initiate reconfiguration of the throttle;;; -VcAesRcfgM;VcFiFsLpEgrThrV;VcFi to indicate faults on LP EGR throttle actuator and initiate reconfiguration of EGR control;;; -VcAesRcfgM;VcFiFsLpEgrS;VcFi to indicate faults on the LP EGR valve position sensor and initiate reconfiguration of EGR control;;; -VcAesRcfgM;VcFiFsLpEgrV;VcFi to indicate faults on the LP EGR valve actuator and initiate reconfiguration of EGR control;;; -VcAesRcfgM;VcFiFsHpEgrS;VcFi to indicate faults on the HP EGR valve position sensor and initiate reconfiguration of EGR control;;; -VcAesRcfgM;VcFiFsHpEgrV;VcFi to indicate faults on the HP EGR valve actuator and initiate reconfiguration of EGR control;;; -VcAesRcfgM;VcFiFsHpCmprBypOpen;VcFi for opening HP compressor bypass;;; -VcAesRcfgM;VcFiFsHPVntOpen;VcFi for opening HP VNT;;; -VcAesTrboM;VcFiBoostPeakMon;VcFi for Boost Pressure Pressure Peak Monitor;;;BSTPEAK -VcAesTrboM;VcFiBoostPPlausMon;VcFi for Boost Pressure Rationality Monitor;;;BSTR -VcAesTrboMg3;VcFiBoostPeakMon;VcFi for Boost Pressure Pressure Peak Monitor;;;BSTPEAK -VcAesTrboMg3;VcFiBoost2PeakMon;VcFi for Boost 2 Pressure Pressure Peak Monitor;;; -VcAesTrboMg3;VcFiBoostPPlausMon;VcFi for Boost Pressure Rationality Monitor;;;BSTR -VcAesTrboMg3;VcFiBoostPeakHPUsMon;VcFi for Boost Peak Pressure Monitor HP Upstream or E-Charger upstream;;; -VcAesTrboMg3;VcFiBoostHpCmprBypStkOpen;VcFi for HP compressor bypass stuck open;;; -VcFsdPc;VcFiFsPEMRunDryMon;VcFi for activation of run dry monitor;Varför finns det inget event till denna monitor?;;FS_PEM1 -VcOilLvl;VcFiOilLvlMon;VcFi for Oil level monitor;;;OILLV -VcOilPrMon;VcFiOilPrMon;VcFi for Oil pressure rationality monitor;;;OILP -VcOilPrMon;VcFiOilPrMonOffs;VcFi for Oil pressure offset test rationality monitor;;;OILPOFFS -VcOilPrMon;VcFiFsOilPSnsrInhUse;Request to inhibit use of pressure sensor;;;FS_OILPC -VcOilPrMon;VcFiFsOilTSnsrInhUse;Request to inhibit use of oil temp. sensor;;;FS_OPTST -VcOilPrMon;VcFiOilPmpStckMon;VcFi for Oil pump solenoid stuck monitor;;; -VcPpmImob;VcFiImmo;Diagnostics: Function identifier for Imobiliser. [0 65535], Default=10;;x; -VcTcDir;VcFiFsActrChgOfDirNotPsbl;Lost com on CAN for Tacm;Är denna funktionen bara för hybrid? Uppdatera kommentarerna till något bättre;x; -VcTcDir;VcFiFsMsgChgOfDirNotPsbl;Lost commuincation on LIN from EGSM node.;Är denna funktionen bara för hybrid?;x; -VcTcDir;VcFiFsDrvrInpDirNotPsbl;Lost commuincation on CAN from EGSM node.;Är denna funktionen bara för hybrid?;x; -VcTmAf;VcFiFsAirCoolgFlowSafe;VcFi to compensate for broken coolant temp sensor;;x;FS_AirCoolgFlowSafe -VcTmAf;VcFiFsAirCoolgLimHi;VcFi activate if engine cooling fan is faulty.;;x;FS_AirCoolgFlowLimHi -VcTmAf;VcFiFsAirCoolgLimLowr;VcFi to compensate for broken spoiler shutter;;x;FS_AirCoolgFlowLimLo -VcTmAf;VcFiFsAirCoolgLimUppr;VcFi to compensate for broken grill shutter;;x;FS_AirCoolgFlowLimMed -VcTmAf;VcFiFsEngFanRlyRels;VcFi to release fan relay;;x;FS_EngFanRlyRels -VcTmHcc;VcFiFsEdClntPmp;VcFi for reconfiguration of electric drive coolant pump;;x;RCPC -VcTmHcc;VcFiFsEdClntFlwEstClsdTh;VcFi for reconfiguration estimated electric drive coolant flow closed thermostat ;;x;RECFC -VcTmHcc;VcFiFsEdClntFlwEstOpenTh;VcFi for reconfiguration estimated electric drive coolant flow open thermostat ;;x;RECFO -VcTmHcc;VcFiFsEdClntT;VcFi for reconfiguration of electric drivetrain coolant temperature;;x;RMEDT -VcTmHcc;VcFiFsEdClntPmpMaxFlw;VcFi for reconfiguration set max electric drive coolant flow;SDCF - vilket coolant flow är detta?;x;SDCF -VcTmHcc;VcFiFsEdClntPmpMaxSpd;VcFi for reconfiguration to maximum electric drive pump speed;vilken coolant pump?;x;SMPS -VcTmHcc;VcFiFsEdFanShutOff;VcFi for reconfiguration to shutoff electric drive fan request;SOFR - vilken fläkt? Electric Drivetrain?;x;SOFR -VcEmiCatM;VcFiCatMon;Function Id for catalyst monitor;;; -VcEmiOscM;VcFiCatalystO2StorageMon;Function Id for catalyst monitor;;; -VcEmiAdpM;VcFiSecO2AdpMon;Function Id for secondary fuel trim monitor;;; -VcEmiPlsM;VcFiSecO2SnsrPlausMon;Function Id for secondary oxygen sensor plausability monitor;;; -VcLamDynCcM;VcFiPrimO2SnsrSlowRespMon;Function ID for front lambda sensor slow response;;; -VcLamAdpM;VcFiLamAdpMon;Function ID for Fueltrim;;; -VcEmiCtrl;VcFiFsEmiCtrlFbInh;VcFi for inhibition of Hego feedback emission control;;;FS_SFBA -VcEmiOvlp;VcFiFsEmiOvlpInh;VcFi for inhibition of emission requests forVVT overlap;;;FS_OVLFC -VcLamDyn;VcFiFsLamCtrlInh;VcFi for inhibition of lambda feedback control;;x;FS_AFA -VcInjMode;VcFiFsInjModeHom;VcFi for reconfiguration to single intake injection mode;Samtliga dessa gamla failsafe ( inklusive de som skapades i Densos CM_HPSysFS och FI_StaInjDly) skall sätta denna failsafe;x;FS_HOMOG, Ycm_HPSysFS_FS_HPSYSHI, Ycm_HPSysFS_FS_STINJ, Yfi_StaInjDly_STINJ_StaInFact -VcLamDyn;VcFiFsCmnStaFuCutPCndInh;VcFi for inhibition of fuel pressure condition to enable start injections;;x;Ycm_HPSysFS_FS_STINJ, Yfi_StaInjDly_STINJ_StaInFact -VcCmnRunReqCEC;VcFiFsStopStartInh;VcFi for inhibition of stop start function;;;FS_ISS -VcObdCmn;VcFiFsOilTOutOfRange;VcFi to inhibit average oil temperature calculation if the sensor value is out of range;;; -VcObdCmn;VcFiFsBstTOutOfRange;VcFi to inhibit average boost temperature calculation if the sensor value is out of range;;; -VcObdCmn;VcFiFsClntTOutOfRange;VcFi to inhibit average coolant temperature calculation if the sensor value is out of range;;; -VcObdCmn;VcFiFsInManiTOutOfRange;VcFi to inhibit average intake manifold temperature calculation if the sensor value is out of range;;; -VcObdCmn;VcFiFsAmbTOutOfRange;VcFi to inhibit average ambient temperature calculation if the sensor value is out of range;;; -VcObdCmn;VcFiFsIntkAirTOutOfRange;VcFi to inhibit average intake air temperature calculation if the sensor value is out of range;;; -VcObdCmn;VcFiFsBstT2OutOfRange;VcFi to inhibit average boost temperature 2 calculation if the sensor value is out of range;;; -VcObdCmn;VcFiFsLtClntWcacTOutOfRange;VcFi to inhibit average LT wcac coolant temperature calculation if the sensor value is out of range;;; -VcObdCmn;VcFiFsPowerPulseTOutOfRange;VcFi to inhibit average power pulse temperature calculation if the sensor value is out of range;;; -VcObdCmn;VcFiFsEChargerTOutOfRange;VcFi to inhibit average ECharger temperature calculation if the sensor value is out of range;;; -VcObdCmn;VcFiFsWcacUsAirTOutOfRange;VcFi to inhibit average WCAC upstream air temperature calculation if the sensor value is out of range;;; -VcObdCmn;VcFiFsLPFuelTOutOfRange;VcFi to inhibit average LP fuel temperature calculation if the sensor value is out of range;;; -VcTempKohlM;VcFiFsAmbTRcfg;VcFi for reconfiguration to replacement value of Ambient temperature;;;FS_AMBT -VcTempKohlM;VcFiFsIntkAirTRcfg;VcFi for reconfiguration to replacement value of Intake air temperature;;;FS_IAT2 -VcTempKohlM;VcFiFsBstTRcfg;VcFi for reconfiguration to replacement value of Boost air temperature;;;FS_BAT -VcTempKohlM;VcFiFsClntTRcfg;VcFi for reconfiguration to replacement value of Engine coolant temperature;;;FS_ECT -VcTempKohlM;VcFiFsOilTRcfg;VcFi for reconfiguration to replacement value of Oil temperature;;;FS_OILT -VcTempKohlM;VcFiFsInManiTRcfg;VcFi for reconfiguration to replacement value of Intake manifold air temperature;;;FS_MAT -VcTempKohlM;VcFiFsCisgTRcfg;VcFi for reconfiguration to replacement value of Crank ISG temperature;;;FS_CISG -VcTempKohlM;VcFiFsLtClntWcacTRcfg;VcFi for reconfiguration to replacement value of coolant temperature in the LT wcac circuit;;; -VcTempKohlM;VcFiFsPowerPulseTRcfg;VcFi for reconfiguration to replacement value of the Power pulse temperature;;; -VcTempKohlM;VcFiFsEChargerTRcfg;VcFi for reconfiguration to replacement value of the ECharger temperature;;; -VcTempKohlM;VcFiFsWcacUsAirTRcfg;VcFi for reconfiguration to replacement value of the WCAC upstream air temperature;;; -VcTempKohlM;VcFiFsLPFuelTRcfg;VcFi for reconfiguration to replacement value of the LP fuel temperature;;; -VcTempKohlM;VcFiAmbTKohlM;VcFi for offset monitor of the ambient air temperature sensor;;;KOAMBT -VcTempKohlM;VcFiIntkAirTKohlM;VcFi for offset monitor of the intake air temperature sensor;;;KOIAT -VcTempKohlM;VcFiBstTKohlM;VcFi for offset monitor of the boost air temperature sensor;;;KOBAT -VcTempKohlM;VcFiClntTKohlM;VcFi for offset monitor of the engine coolant temperature sensor;;;KOECT -VcTempKohlM;VcFiOilTKohlM;VcFi for offset monitor of the oil temperature sensor;;;KOOILT -VcTempKohlM;VcFiInManiTKohlM;VcFi for offset monitor of the intake manifold air temperature sensor;;;KOMAT -VcTempKohlM;VcFiCisgTKohlM;VcFi for offset monitor of the Crank ISG temperature sensor;;;KOCISG -VcTempKohlM;VcFiBstT2KohlM;VcFi for offset monitor of the boost air temperature sensor 2;;; -VcTempKohlM;VcFiLtClntWcacTKohlM;VcFi for offset monitor of the coolant temperature sensor in the LT wcac circuit;;; -VcTempKohlM;VcFiPowerPulseTKohlM;VcFi for offset monitor of the power pulse temperature sensor;;; -VcTempKohlM;VcFiEChargerTKohlM;VcFi for offset monitor of the ECharger temperature sensor;;; -VcTempKohlM;VcFiLPFuelTKohlM;VcFi for offset monitor of the LP fuel temperature sensor;;; -VcTempKohlM;VcFiWcacUsAirTKohlM;VcFi for offset monitor of the WCAC upstream air temperature sensor;;; -VcTempStkM;VcFiBstTStkM;VcFi for stuck in range monitor of the boost air temperature sensor;;;BATD -VcTempStkM;VcFiClntTStkM;VcFi for stuck in range monitor of the engine coolant temperature sensor;;;CLTD -VcTempStkM;VcFiIntkAirTStkM;VcFi for stuck in range monitor of the intake air temperature sensor;;;IATD -VcTempStkM;VcFiInManiTStkM;VcFi for stuck in range monitor of the intake manifold air temperature sensor;;;MATD -VcTempStkM;VcFiBstT2StkM;VcFi for stuck in range monitor of the boost air temperature sensor 2;;; -VcTempStkM;VcFiLtClntWcacTStkM;VcFi for stuck in range monitor of the coolant temperature sensor in the LT wcac circuit;;; -VcTempStkM;VcFiPowerPulseTStkM;VcFi for stuck in range monitor of the power pulse temperature sensor;;;PPTD -VcTempStkM;VcFiEChrgrTStkM;VcFi for stuck in range monitor of the Echarger temperature sensor;;; -VcTempStkM;VcFiOilTStkM;VcFi for stuck in range monitor of the Oil temperature sensor;;; -VcTempStkM;VcFiLPFuelTStkM;VcFi for stuck in range monitor of the LP fuel temperature sensor;;; -VcTempStkM;VcFiWcacUsAirTStkM;VcFi for stuck in range monitor of the WCAC upstream air temperature sensor;;; -VcTempThM;VcFiThM;VcFi for thermostat monitor;;;THMS -VcTempThContnsM;VcFiThContnsM;VcFi for continuous thermostat monitor;;; -VcAesObd;VcFiFsPowerPulse;VcFi for power pulse failsafe;;;FS_PowerPulse -VcAesObd;VcFiExhtMnfPMon;VcFi for exhaust manifold pressure rationality monitor;;;EXHPR -VcAesExhMnfPM;VcFiExhtMnfPMon;VcFi for exhaust manifold pressure rationality monitor;;;EXHPR -VcAesTrboM;VcFiPpValveStk;VcFi for power pulse valve stuck closed monitor;;;PPVSTK -VcAesTrboM;VcFiPpLk;VcFi for power pulse leakage monitor;;;PPLK -VcAesTrboM;VcFiPpSmlLk;VcFi for power pulse small leakage monitor;;;PPSMLK -VcAesPpM;VcFiPpValveStk;VcFi for power pulse valve stuck closed monitor;;;PPVSTK -VcAesPpM;VcFiPpLk;VcFi for power pulse leakage monitor;;;PPLK -VcAesPpM;VcFiPpSmlLk;VcFi for power pulse small leakage monitor;;;PPSMLK -VcAesTrboM;VcFiVntAdp;VcFi for vacuum VNT adaption monitor;;;VNTDP -VcAesVntM;VcFiVntAdp;VcFi for vacuum VNT adaption monitor;;;VNTDP -VcAesEgrM;VcFiEgrSysMon;VcFi for EGR system monitor;;; -VcAesEgrM;VcFiEgrAr;VcFi for SR EGR flow monitor;;;EGRAR -VcAesEgrM;VcFiEgrClrMnr;VcFi for EGR cooler monitor;;;EGRCLRR -VcAesEgrM;VcFiEgrIntkTPeak;VcFi for intake air temperature peak monitor;;;INTKPEAK -VcAesSupM;VcFiSupChrPMdlPlausHi;VcFi for Supercharger Pressure Rationality Monitor High (Target vs. Actual);;; -VcAesSupM;VcFiSupChrPMdlPlausLo;VcFi for Supercharger Pressure Rationality Monitor Low (Target vs. Actual);;; -VcAesSupM;VcFiSupChrPPeak;VcFi for supercharger pressure too high monitor;;; -VcAesSupM;VcFiSupChrStuck;VcFi for supercharger clutch stuck monitor;;; -VcNoxSensMgr;VcFiNOxSensUsVoltageDiag;Inhibit voltage diag;Upstream sensor;; -VcNoxSensMgr;VcFiNOxSensUsProbeLnDiag;Inhibit probe line diag (incl. Heater line);Upstream sensor;; -VcNoxSensMgr;VcFiNOxSensUsSRC;Inhibit SRC;Upstream sensor;; -VcNoxSensMgr;VcFiNOxSensUsHeaterDiag;Inhibit heater diag;Upstream sensor;; -VcNoxSensMgr;VcFiNOxSensUsMountingDiag;Inhibit mounting diag;Upstream sensor;; -VcNoxSensMgr;VcFiNOxSensUsAvailabilityDiag;Inhibit availability diag;Upstream sensor;; -VcNoxSensMgr;VcFiNOxSensUsReadinessDiag;Inhibit readiness diag;Upstream sensor;; -VcNoxSensMgr;VcFiNOxSensUsCurveDiagA;Inhibit curve diag A;Upstream sensor;; -VcNoxSensMgr;VcFiFsNOxSensUsError;Failsafe for transition to error state;Upstream sensor;; -VcNoxSensMgr;VcFiFsNOxSensUsFreezeNOx;Failsafe for freezing NOx value;Upstream sensor;; -VcNoxSensMgr;VcFiFsNOxSensUsFreezeLambda;Failsafe for freezing lambda value;Upstream sensor;; -VcNoxSensMgr;VcFiFsNOxSensUsModelNOx;Failsafe for using modeled Nox instead of sensor value;Upstream sensor;; -VcNoxSensMgr;VcFiFsNOxSensUsModelLambda;Failsafe for using modeled lambda instead of sensor value;Upstream sensor;; -VcNoxSensMgr;VcFiNOxSensDsVoltageDiag;Inhibit voltage diag;Downstream sensor;; -VcNoxSensMgr;VcFiNOxSensDsProbeLnDiag;Inhibit probe line diag (incl. Heater line);Downstream sensor;; -VcNoxSensMgr;VcFiNOxSensDsSRC;Inhibit SRC;Downstream sensor;; -VcNoxSensMgr;VcFiNOxSensDsHeaterDiag;Inhibit heater diag;Downstream sensor;; -VcNoxSensMgr;VcFiNOxSensDsMountingDiag;Inhibit mounting diag;Downstream sensor;; -VcNoxSensMgr;VcFiNOxSensDsAvailabilityDiag;Inhibit availability diag;Downstream sensor;; -VcNoxSensMgr;VcFiNOxSensDsReadinessDiag;Inhibit readiness diag;Downstream sensor;; -VcNoxSensMgr;VcFiNOxSensDsCurveDiagA;Inhibit curve diag A;Downstream sensor;; -VcNoxSensMgr;VcFiFsNOxSensDsError;Failsafe for transition to error state;Downstream sensor;; -VcNoxSensMgr;VcFiFsNOxSensDsFreezeNOx;Failsafe for freezing NOx value;Downstream sensor;; -VcNoxSensMgr;VcFiFsNOxSensDsFreezeLambda;Failsafe for freezing lambda value;Downstream sensor;; -VcNoxSensMgr;VcFiFsNOxSensDsModelNOx;Failsafe for using modeled Nox instead of sensor value;Downstream sensor;; -VcNoxSensMgr;VcFiFsNOxSensDsModelLambda;Failsafe for using modeled lambda instead of sensor value;Downstream sensor;; -VcDrvInd;VcFiDrvInd;Inhibit VcDrvInd;SCR Inducement monitor;; -VcDrvInd;VcFiFsDrvInd;Failsafe to inhibit start at full inducement;SCR Inducement monitor;; -VcAesTrboM;VcFiPpLkExh;VcFi for power pulse leak to exhaust monitor;;;PPVSTKO -VcAesPpM;VcFiPpLkExh;VcFi for power pulse leak to exhaust monitor;;;PPVSTKO -VcIgnCut;VcFiFsIgnInh;VcFi for inhibition of ignition;;;Yim_Result_IgnitionPermit -VcVVTiTar;VcFiFsVVTiTestSw;VcFi for switching to a test position for inlet VVT;;; -VcVVTiTar;VcFiFsVVTiTestPos;VcFi for setting a test position for inlet VVT;;; -VcVVTeTar;VcFiFsVVTScav;VcFi for allowing Scavanging;;; -VcVVTeTar;VcFiFsVVTeTestSw;VcFi for switching to a test position for exhaust VVT;;; -VcVVTeTar;VcFiFsVVTeTestPos;VcFi for setting a test position for exhaust VVT;;; -VcProtNe;VcFiFsEngSpdLimn1;VcFi for lowered rev limit level 1;;;FS_NE -VcProtNe;VcFiFsEngSpdLimn2;VcFi for lowered rev limit level 2;;;LimpMode=3 (Crankgivarfel) -VcInjFuCut;VcFiFsFuCutCyl1;VcFi for cylinder individual fuel cut off on cylinder 1;;;FS_FC1…4 additional to Bosch signal yVcEc_B_MisfFuCutCyl2 -VcInjFuCut;VcFiFsFuCutCyl2;VcFi for cylinder individual fuel cut off on cylinder 2;;; -VcInjFuCut;VcFiFsFuCutCyl3;VcFi for cylinder individual fuel cut off on cylinder 3;;; -VcInjFuCut;VcFiFsFuCutCyl4;VcFi for cylinder individual fuel cut off on cylinder 4;;; -VcObdDpms;VcFiDpmsTPlaus;Key on check of temperature meander;;;DpmsTPlaus -VcObdDpms;VcFiDpmsProtTubePlaus;Detection of clogged protection tube;;;DpmsProtTubePlaus -VcObdDpms;VcFiDpmsHtrPlaus;Heater plausibility check;;;DpmsHtrPlaus -VcObdDpms;VcFiDpmsIDEPlaus;IDE plausibility check;;;DpmsIDEPlaus -VcObdDpms;VcFiDpmsShntCircPlaus;IDE shunt circuit plausibility check;;;DpmsShntCircPlaus -VcObdDpms;VcFiDpmsBattDiff1;Diff between system voltage and sensor voltage during high load;;;DpmsBattDiff1 -VcObdDpms;VcFiDpmsBattDiff2;Diff between system voltage and sensor voltage;;;DpmsBattDiff2 -VcObdDpms;VcFiDpmsBattElec;Sensor self diagnosis, battery voltage error;;;DpmsBattElec -VcObdDpms;VcFiDpmsCanTO;Sensor self diagnosis, CAN TimeOut;;;DpmsCanTO -VcObdDpms;VcFiDpmsHtrOffElec;Sensor self diagnosis, heater error in off state;;;DpmsHtrOffElec -VcObdDpms;VcFiDpmsTElec;Sensor self diagnosis, temperature meander error;;;DpmsTElec -VcObdDpms;VcFiDpmsIDENegElec;Sensor self diagnosis, IDE negative current error;;;DpmsIDENegElec -VcObdDpms;VcFiDpmsHtrOnElec;Sensor self diagnosis, heater error in on state;;;DpmsHtrOnElec -VcObdDpms;VcFiDpmsIDEPosElec;Sensor self diagnosis, IDE positive current error;;;DpmsIDEPosElec -VcObdDpfDpms;VcFiDPFPerfDpms;DPF soot filtration efficiency below threshold Soot Sensor ;;;DPFPERF -VcObdDpf;VcFiDPFPerfDP;DPF soot filtration efficiency below threshold DP-sensor;;; -VcObdDpms;VcFiPMSnsrCanComFail;Sensor self diagnosis, PM sensor CAN communication failure;;; -VcObdDpms;VcFiPMSnsrCtrlModPerf;Sensor self diagnosis, PM sensor control module performance;;; -VcObdDpms;VcFiPMSnsrSuppVoltHi;Sensor self diagnosis, PM sensor control module supply voltage low;;; -VcObdDpms;VcFiPMSnsrSuppVoltLo;Sensor self diagnosis, PM sensor control module supply voltage high;;; -VcObdDpms;VcFiPMSnsrGainFault;Sensor self diagnosis, PM sensor gain fault;;; -VcObdDpms;VcFiPMSnsrHeatrCurHi;Sensor self diagnosis, PM sensor heater current too high;;; -VcObdDpms;VcFiPMSnsrHeatrCurLo;Sensor self diagnosis, PM sensor heater current too low;;; -VcObdDpms;VcFiPMSnsrHeatrTempHi;Sensor self diagnosis, PM sensor heater temperature too high;;; -VcObdDpms;VcFiPMSnsrInternSC;Sensor self diagnosis, PM sensor internal short circuit fault;;; -VcObdDpms;VcFiPMSnsrOC;Sensor self diagnosis, PM sensor open circuit fault;;; -VcObdDpms;VcFiPMSnsrRegenTOut;Sensor self diagnosis, PM sensor regeneration time out;;; -VcObdDpms;VcFiPMSnsrSCBatt;Sensor self diagnosis, PM sensor short circuit to battery fault;;; -VcObdDpms;VcFiPMSnsrSCGnd;Sensor self diagnosis, PM sensor short circuit to ground fault;;; -VcObdDpms;VcFiPMSnsrVBoostLo;Sensor self diagnosis, PM sensor boost voltage too low;;; -VcObdDpms;VcFiPMSnsrOutOfExh;PM Sensor, Tampering diagnosis for removed/out of exhaust;;; -VcObdDpms;VcFiPMSnsrCloggedTip;PM Sensor,Tampering diagnosis clogged tip;;; -VcObdNoxSens;VcFiNOxSensPlausGeneral;General identifier for Nox plausibility functions;;; -VcObdNoxSO2;VcFiNOxSensO2;Function identifier for Nox sensor O2 monitor;;; -VcObdNoxSOfs;VcFiNOxSensOfs;Function identifier for Nox offset monitors;;; -VcAcPMon;VcFiFsAcFlowCalcn;Inhibition of AC flow calculation due to A/C variable compressor no operation;;;FS_ACENA -VcAcPMon;VcFiAcPMon;VcFi for AC pressure monitor;;;ACPS -VcLinCptM;VcFiAltMon;VcFi for alternator monitor;;;ACM -VcLinCptM;VcFiGrlShttrMon;VcFi for grill shutter monitor;;x;AGM -VcLinCptM;VcFiSplrShttrMon;VcFi for spoiler shutter monitor;;x;ASSM -VcLinCptM;VcFiEwpMon;VcFi for ICE electrical water pump;;;EPM -VcLinCptM;VcFiEDEwpMon;VcFi for internal ED electrical water pump errors;;;MTEDCP -VcLinCptM;VcFiElACMon;VcFi for Electrical AC;;;ACCM -VcAcCtrl;VcFiFsACEV;Diagnose code for detection of malfunction of pressure sensor in AC circuit;;x;FS_ACEV -AcVlvCtrl;VcFiFsAcChillerVlvClsd;FID for Chiller(AC) shut off valve, Closed;;x;FS_AcChillerVlvClsd -AcVlvCtrl;VcFiFsAcChillerVlvOpn;FID forChiller(AC) shut off valve, Open;;x;FS_AcChillerVlvOpn -AcVlvCtrl;VcFiFsAcFrntEvaprVlvClsd;FID for Front evaporator(AC) shut off valve, Closed;;x;FS_AcFrntEvaprVlvClsd -AcVlvCtrl;VcFiFsAcFrntEvaprVlvOpn;FID for Front evaporator(AC) shut off valve, Open;;x;FS_AcFrntEvaprVlvOpn -AcVlvCtrl;VcFiFsAcFrntEvaprVlv;VcFs for front evaporator valve;;x;Z_FidEVAPVLV -VcIgnBase;VcFiFsIgnRetard;Ignition retard for incereased tolerances in position measurement ;;; -VcLamAdp;VcFiFsLamAdpInh;Inhibit lambda control adaptation;;;FS_ADFA -VcPurgExe;VcFiFsPurgeInh;Inhibit purging;;;FS_PURGE -VcObdNoxSens;VcFiNOxSensUsLambdaSlwResp;FID for upstream Nox sensor lambda signal slow response ;;; -VcObdNoxSens;VcFiNOxSensDsLambdaSlwResp;FID for downstream Nox sensor lambda signal slow response ;;; -VcAesTrboM;VcFiPpRly;VcFi for power pulse relay monitoring.;;;PPRLYSTK -VcAesPpM;VcFiPpRly;VcFi for power pulse relay monitoring.;;;PPRLYSTK -VcAesObd;VcFiFsPowerPulseRly1;VcFi for failsafe power pulse relay 1 stuck;;;FS_PowerPulseRly1 -VcAesObd;VcFiFsPowerPulseRly2;VcFi for failsafe power pulse relay 2 stuck;;;FS_PowerPulseRly2 -VcObdExhTemp;VcFiExhTempCat;Function identifier for T1 temperature sensor monitor;;; -VcObdExhTemp;VcFiExhTempDpf;Function identifier for T2 temperature sensor monitor;;; -VcObdExhTemp;VcFiExhTempScr;Function identifier for T3 temperature sensor monitor;;; -VcObdScr;VcFiScrConvEff;Function identifier for SCR conversion efficiency;;; -VcTrsmShfShkMon;VcFiShfShkOn;VcFi for On/Off of Shift Shock Monitor;;x; -VcTrsmHeatMon;VcFiTrsmHeatMon;VcFi for On/Off Transmission Heat monitor;;x; -VcIgnAdp;VcFiFsIgnAdpOffs;Freeze adaptation and set safe replacement values;to be used in case of knock sensor failure;x; -VcTmEdMon;VcFiEdTOffsMon;VcFi for inhibition of ED Circuit Temp Sensors Offset Monitors;;; -VcTmEdMon;VcFiEdTStuckMon;VcFi for inhibition of ED Circuit Temp Sensors Stuck Monitors;;; -VcTrsmNeuShkMon;VcFiTrsmNeuShkOn;VcFi for On/Off of Shift Shock Monitor;;; -VcTrsmTkOffMon;VcFiTrsmTkOffOn;VcFi for On/Off Transmission Heat monitor;;x; -VcDpmsCtrl;VcFiFSDpmsCtrlOff;VcFiFS for turning off sot sensor;;;Z_FidFS_DpmsCtrlOff -VcObdLnt;VcFiObdLnt;LNT performance below threshold;;;NTMA -VcObdLntNox;VcFiObdLntNox;FID for LNT performance below threshold;;; -VcRcfAISD;VcFiISDReq;VcFi to request ISD activation;;x; -VcTmEfl;VcFiAuxCWPOnReq;VcFi for reconfigure the climatic waterpump when HVAC valve is faulty;;x;FS_CWP -VcTmEfl;VcFiEwpFS;VcFi for FailSafe Electric Waterpump VEP Gen1;;x;FS_ECPMS -VcScrAd;VcFiScrAdaptionInhibit;Inhibition of SCR adaption function;;; -VcRdp;VcFiRdpCalculationInhibit;Inhibition of RDP calculation;;; -VcEmCo;VcFiEmCoDpfRgnInhibit;Inhibition of DPF regen request from EmCo;;; -VcMtThMon;VcFiMtLtClntTStuck;FID for inhibition of ED circuit coolant temp sensor stuck;;;MTCS -VcMtThMon;VcFiMtEradInvTStuck;FID for inhibition of ED circuit Erad inverter temp sensor stuck;;;ERAD -VcMtThMon;VcFiMtWtrPmpTStuck;FID for inhibition of ED circuit water pump temp sensor stuck;;;HYEDCP -VcMtThMon;VcFiMtCiddClntTStuck;FID for inhibition of ED circuit Cidd coolant temp sensor stuck;;;CCID -VcMtThMon;VcFiMtHvgWndgTStuck;FID for inhibition of ED circuit Cidd coolant temp sensor stuck;;;STCISGT -VcMtThMon;VcFiHvBattTOut;Fall back temperature value to be used for Te_HvBattCooltTOut;;;HvBattTOut -VcMtThMon;VcFiMtThStuck;FID for inhibition of ED cicruit thermostat stuck open and close;;;MTTHMS -VcMtThMon;VcFiMtTOffs;FID for inhibition of ED circuit temp sensors offset ;;; -VcMtThMon;VcFiMtWtrPmpTOffs;FID for inhibition of ED circuit water pump temp sensor offset check;;; -VcMtThMon;VcFiMtCiddClntTOffs;FID for inhibition of ED circuit Cidd coolant temp sensor offset check;;; -VcMtThMon;VcFiHvBattCool;FID for inhibition of High voltage battery cooling;;;HvBattCool -VcMtThMon;VcFiHvBattTOffs;FID for inhibition of Hv battery temp sensor offset check;;;HvBattT -Unused;VcFiUnused;Parking place for unused monitors;;; -Core Displayadapter;VcFiCoAf;Inhibition helper from SPM's;;; -Core Displayadapter;VcFiDaFid1;Dummy FIM-line for messages;;; -Core Displayadapter;VcFiDaFid2;Dummy FIM-line for messages;;; -Core Displayadapter;VcFiDaFid3;Dummy FIM-line for messages;;; -Core Displayadapter;VcFiDaFid4;Dummy FIM-line for messages;;; -Core Displayadapter;VcFiDaFid5;Dummy FIM-line for messages;;; -Core Displayadapter;VcFiDaFid6;Dummy FIM-line for messages;;; -Core Displayadapter;VcFiDaFid7;Dummy FIM-line for messages;;; -Core Displayadapter;VcFiDaFid8;Dummy FIM-line for messages;;; -Core Displayadapter;VcFiDaFid9;Dummy FIM-line for messages;;; -Core Displayadapter;VcFiDaFid10;Dummy FIM-line for messages;;; -Core Displayadapter;VcFiDaFid11;Dummy FIM-line for messages;;; -Core Displayadapter;VcFiDaFid12;Dummy FIM-line for messages;;; -Core Displayadapter;VcFiDaFid13;Dummy FIM-line for messages;;; -Core Displayadapter;VcFiDaFid14;Dummy FIM-line for messages;;; -Core Displayadapter;VcFiDaFid15;Dummy FIM-line for messages;;; -Core Displayadapter;VcFiDaFid16;Dummy FIM-line for messages;;; -Core Displayadapter;VcFiDaFid17;Dummy FIM-line for messages;;; -VcFtivMon;VcFiFtivMon;Function Id for Fuel Tank Isolation Valve monitor;;; -VcPurgMon;VcFiPurgMon;Function Id for purge monitor;;; -VcLamCtrlM;VcFiLamCtrlM;Function Id for lambda control closed loop monitor;;; -VcAesDiffPresM;VcFiDiffPresM;Function Id for LR EGR differential pressure monitor;;; -VcAesDynPresM;VcFiBst1AmbPPlausMon;Function Id for boost 1 vs.ambient pressure comparison;;; -VcAesDynPresM;VcFiBst2AmbPPlausMon;Function Id for boost 2 vs.ambient pressure comparison;;; -VcAesDynPresM;VcFiBst1Bst2PlausMon;Function Id for boost 1 vs.boost 2 pressure comparison;;; -VcAesDynPresM;VcFiBst2IntkMapPlausMon;Function Id for boost 2 vs intake manifold pressure comparison;;; -VcAesDynPresM;VcFiBst1IntkMapPlausMon;Function Id for boost 1 vs intake manifold pressure comparison;;; -VcAesStatPresM;VcFiAmbPCompPlausMon;VcFi forAmbient Pressure Rationality Monitor (comparison to other sensor at eng off);;;ATPR -VcAesStatPresM;VcFiBst1PCompPlausMon;VcFi for boost 1 Pressure Rationality Monitor (comparison to other sensor at eng off);;; -VcAesStatPresM;VcFiBst2PCompPlausMon;VcFi for boost 2 Pressure Rationality Monitor (comparison to other sensor at eng off);;; -VcAesStatPresM;VcFiIntkMnfldPCompPlausMon;VcFi for Intake Manifold Pressure Diff Rationality Monitor (comparison to other sensor at eng off);;;MAPIMPDR -VcAesStatPresM;VcFiExhMnfldPCompPlausMon;VcFi for Exhaust Manifold Pressure Diff Rationality Monitor (comparison to other sensor at eng off);;;EXHMPDR -VcAesStatPresM;VcFiElcmPCompPlausMon;VcFi for ELCM Pressure Diff Rationality Monitor (comparison to other sensor at eng off);;; -VcAesStatPresM;VcFiScPCompPlausMon;VcFi for Supercharger Pressure Rationality Monitor (comparison to other sensor at eng off);;;SCPR -VcEmCo;VcFiFSScrOnly;Failsafe to run only in SCR-mode (Skip LNT and mixed mode);;; -VcEmCo;VcFiFSLntOnly;Failsafe to run only in LNT-mode (Skip SCR and mixed mode);;; -VcTmApach;VcFiFsPmpCluOpn;Failsafe flag that indicates that a fault has been found on the clutchable waterpump, clutch is open;;; -VcTmApach;VcFiFsPmpCluClsd;Failsafe flag that indicates that a fault has been found on the clutchable waterpump, clutch is closed;;; -VcTmApach;VcFiFsWcacPmp;Failsafe flag that indicates that a fault has been found on the electric waterpump for the WCAC system;;; -VcTmApach;VcFiFsEocVlvClsd;Failsafe flag that indicates that a fault has been found on the EOC coolant calve, valve is closed;;; -VcTmApach;VcFiFsEocVlvOpn;Failsafe flag that indicates that a fault has been found on the EOC coolant calve, valve is open;;; -VcTmApach;VcFiFsTocVlvClsd;Failsafe flag that indicates that a fault has been found on the TOC coolant calve, valve is closed;;; -VcTmApach;VcFiFsTocVlvOpn;Failsafe flag that indicates that a fault has been found on the TOC coolant calve, valve is open;;; -VcScFeh;VcFiFeh1;Dummy FIM-line for messages;;x; -VcScFeh;VcFiFeh2;Dummy FIM-line for messages;;x; -VcScFeh;VcFiFeh3;Dummy FIM-line for messages;;x; -VcScFeh;VcFiFeh4;Dummy FIM-line for messages;;x; -VcScFeh;VcFiFeh5;Dummy FIM-line for messages;;x; -VcScFeh;VcFiFeh6;Dummy FIM-line for messages;;x; -VcScFeh;VcFiFeh7;Dummy FIM-line for messages;;x; -VcScFeh;VcFiFsLoPwrWarnMsg;FID for inhibitation of showing message for low available propulsive power when a diagnostic function already shows a similar message ;;x; -VcTqm;VcFiTrqMonLim1;FIM-line for messages from torque monitoring;;x; -VcTqm;VcFiTrqMonLim2;FIM-line for messages from torque monitoring;;x; -VcTqmSpdLim;VcFiSpdLim1;FIM-line for messages from safety speed limiation ;;x; -VcTqmSpdLim;VcFiSpdLim2;FIM-line for messages from safety speed limiation ;;x; -VcTqmASpdLimReq;VcFiISDMsg1;FIM-line for messages from ISD function;;x; -VcTqmASpdLimReq;VcFiISDMsg2;FIM-line for messages from ISD function;;x; -VcTqmASpdLimReq;VcFiISDMsg3;FIM-line for messages from ISD function;;x; -VcObdGpf;VcFiObdGpf;Function ID for gasoline particle filter monitor;;; -VcTmEdMon;VcFiEdHvBattCooltVlvMon;VcFi for inhibition of ED/Battery circuit interconnection valves stuck monitor;;; -VcEmiGpf;VcFiFsGpfInhMdlCorr;Fail safe for inhibiting soot model correction;;x; -VcOilLvl;VcFiOilLvlStck;VcFi for Oil level sensor stuck;;; -VcLeakMon;VcFiLeakMon;FID for leakage detection monitor;;; -VcTmHvacClntTM;VcFiHvacCooltTStuckMon;FID for inhibition of Hvac Temp Stuck Check Diagnostics;;; -VcMtThMon;VcFiHvacCooltTStuckMon;FID for inhibition of Hvac Temp Stuck Check Diagnostics;;; -VcTmHvacVlvM;VcFiFsHvchShutOff;Emission Neutral Default Action fid for the Hvac Vavle;;; -VcTmHvacVlvM;VcFiHvacVlvMon;FID for inhibition of Hvac Valve Monitoring;;; -VcEmCo;VcFiFSLoNoxBase;Failsafe to run in LoNOxBase-mode if faults related to FIE;;; -VcAesMafM;VcFiIntkMnfldFlwMdlPlausMon;VcFi for MAF Rationality Monitor;;; -VcAesEChrgrM ;VcFiEChrgrM;VcFi for Echarger monitor;;; -VcAesHmdM;VcFiHmdM;VcFi for humidity monitor;;; -VcObdCmn;VcFiFsPidDefVal;Send default value from PID;;; -VcTmEdMon;VcFiEdCoolgPfmncMon;VcFi for inhibition of ED circuit system cooling performance error monitor;;; -VcLinCptM;VcFiEDEwpSpdMon;VcFi for ED electrical water pump speed error;;; -VcFuelLpM;VcFiFuelLpM;VcFi for Fuel low pressure monitoring;;; -VcDepSs;VcFiSsRcfSet;Inhibit Stop/Start on certain faults;;x; -VcDepSs;VcFiSsRcfSetAlt;Inhibit Stop/Start on certain faults;;x; -VcFuelLpSensM;VcFiFuelLpSensM;VcFi for Fuel low pressure sensor monitoring;;; -VcFuelLvlSensM;VcFiFuelLvlSensM;VcFi for Fuel level sensor monitoring;;; -VcFuelCtrl;VcFiFsFuLoPFbCtrl;VcFi fail safe flag to disable fuel low pressure feedback control;;; -VcFuelCtrl;VcFiFsFuLoPCtrlMargin;VcFi fail safe flag to increase feed forward margins on fuel low pressure control;;; -VcFuelCtrl;VcFiFsFuLoPPriming;VcFi fail safe flag to prime fuel system after run dry;;; -VcFuelCtrl;VcFiFsFuLoPSetTar;VcFi fail safe flag to set fuel low pressure target;;; -VcFuelCtrl;VcFiFsFuLoPVaporCheck;VcFi fail safe flag to disable fuel low pressure vapor check;;; -VcAccelM;VcFiAccelMStuck;VcFi for accelerometer monitor stuck check;;; -VcAccelM;VcFiAccelMOffs;VcFi for accelerometer monitor rationality check;;; -VcAccelM;VcFiAccelMRange;VcFi for accelerometer monitor out of range check;;; -VcEmiCtrl;VcFiFsEmiCtrlMidFbInh;VcFi fail safe for inhibition of MidHego feedback emission control;;;FS_SFBA -VcFuelCtrl;VcFiFsFuLoPCtrlFlowMargin;VcFi fail safe flag to increase feed forward margins based on flow on fuel low pressure control;;; -VcLamCilM;VcFiCilM;VcFi fail safe for Cylinder Imbalance Monitor;;; -VcLamRespM;VcFiRespM;VcFi fail safe for Lambda Response Monitor;;; -VcTempWcacThM;VcFiWcacThM;VcFi for WCAC cooling circuit heat up monitor;;; -VcLinCptM;VcFiEdcpEmgyMon;VcFi for ED Coolant Pump emergency run monitor;;; -VcLinBypVlvM;VcFiLinBypVlvM;VcFi for LIN Bypass Valve Monitor;;; -VcTmWcac;VcFiFsLinBypVlv;VcFi for opening LIN Bypass Valve;;; -VcKersBltSlipM;VcFiKersBltSlipM;VcFi for Kers Belt Slip monitoring;;; -VcCdPinM;VcFiCdPinM;VcFi for Sliding Camshaft Pin Monitor;;; -VcCdPinM;VcFiFsCdPinM2CylMode;VcFi fail safe for 2 cylinder mode;;; -VcCdPinM;VcFiFsCdPinM4CylMode;VcFi fail safe for 4 cylinder mode;;; -VcLinCptM;VcFiFsCircCnctVlv;VcFi failsafe for HV battery cooling circuit contact valve;;x; -VcLinCptM;VcFiFsCircCnctVlv2;VcFi failsafe for HV battery cooling circuit contact valve;;x; -VcLinCptM;VcFiFsCooltPmpCmptmt;VcFi failsafe for coolant pump in climate circuit;;x; -VcLinCptM;VcFiFsCooltPmpCmptmt2;VcFi failsafe for coolant pump in climate circuit;;x; -VcLinCptM;VcFiFsCooltPmpDtElec;VcFi failsafe for ED coolant pump;;x; -VcLinCptM;VcFiFsCooltPmpDtElec2;VcFi failsafe for ED coolant pump;;x; -VcLinCptM;VcFiFsEvaprVlvFrnt;VcFi failsafe for A/C evaporator valve;;x; -VcLinCptM;VcFiFsEvaprVlvFrnt2;VcFi failsafe for A/C evaporator valve;;x; -VcLinCptM;VcFiFsOutdHeatChgToCmprVlv;VcFi failsafe for accumulator shut-off valve;;x; -VcLinCptM;VcFiFsOutdHeatChgToCmprVlv2;VcFi failsafe for accumulator shut-off valve;;x; -VcLinCptM;VcFiFsRadrBypVlvInDtElec;VcFi failsafe for radiator bypass valve;;x; -VcLinCptM;VcFiFsRadrBypVlvInDtElec2;VcFi failsafe for radiator bypass valve;;x; -VcLinCptM;VcFiFsWtrCondsBypVlv;VcFi failsafe for OHX shut-off valve;;x; -VcLinCptM;VcFiFsWtrCondsBypVlv2;VcFi failsafe for OHX shut-off valve;;x; -VcLinCptM;VcFiFsWtrCondsVlv;VcFi failsafe for liquid cooler condenser shut-off valve;;x; -VcLinCptM;VcFiFsWtrCondsVlv2;VcFi failsafe for liquid cooler condenser shut-off valve;;x; -VcLinCptM;VcFiFsBypVlvForHeatPmp;VcFi failsafe for heatpump bypass valve;;x; -VcLinCptM;VcFiFsBypVlvForHeatPmp2;VcFi failsafe for heatpump bypass valve;;x; -VcLinCptM;VcFiFsCooltTInDtElec;VcFi failsafe for ED coolant temperature sensor;;x; -VcLinCptM;VcFiFsCooltTInCmptmt;VcFi failsafe for coolant temperature in climate circuit;;x; -VcLinCptM;VcFiFsAmbT;VcFi failsafe for ambient temperature sensor;;x; -VcLinCptM;VcFiFsFanCoolgFrnt1;VcFi failsafe for cooling fan 1;;x; -VcLinCptM;VcFiFsFanCoolgFrnt2;VcFi failsafe for cooling fan 2;;x; -VcLinCptM;VcFiFsPCmprInQly;VcFi failsafe for compressor inlet pressure sensor;;x; -VcLinCptM;VcFiFsTCmprInQly;VcFi failsafe for compressor inlet temperature sensor;;x; -VcLinCptM;VcFiFsPCmprOutQly;VcFi failsafe for compressor outlet pressure sensor;;x; -VcLinCptM;VcFiFsTCmprOutQly;VcFi failsafe for compressor outlet temperature sensor;;x; -VcLinCptM;VcFiFsPBattChillrOutQly;VcFi failsafe for chiller out pressure sensor;;x; -VcLinCptM;VcFiFsTBattChillrOutQly;VcFi failsafe for chiller out temperature sensor;;x; -VcLinCptM;VcFiFsPWtrCondsOutlQly;VcFi failsafe for water cooled condensor outlet pressure sensor;;x; -VcLinCptM;VcFiFsTWtrCondsOutlQly;VcFi failsafe for water cooled condensor outlet temperature sensor;;x; -VcLinCptM;VcFiFsPOutdHeatChgOutlQly;VcFi failsafe for battery heat exchanger pressure sensor;;x; -VcLinCptM;VcFiFsTOutdHeatChgOutlQly;VcFi failsafe for battery heat exchanger temperature sensor;;x; -VcLeakMon;VcFiFsFuelLvlSens;Fail safe for fuel level sensors;;; -VcLeakMon;VcFiFsVspd;Fail safe for vehicle speed signal to VcLeakMon;;; -VcObdDps;VcFiDpsStuck;VcFi for dpf Diff Pressure Sensor monitor stuck check;;; -VcObdDps;VcFiDpsPlausMon;VcFi for dpf Diff Pressure Sensor monitor offset check;;; -VcObdDps;VcFiDpsInvHoses;VcFi for dpf Diff Pressure Sensor monitor Inverted Hoses check;;; -VcCmpntSts;VcFiFsGrlShttr;VcFi failsafe for grill shutter;;x; -VcCmpntSts;VcFiFsGrlShttr2;VcFi failsafe for grill shutter;;x; -VcCmpntSts;VcFiFsSplrShttr;VcFi failsafe for spoiler shutter;;x; -VcCmpntSts;VcFiFsSplrShttr2;VcFi failsafe for spoiler shutter;;x; -VcTempLtClntHi;VcFiTempLtClntHi;VcFi for WCAC cooling circuit high temperature monitor;;; -VcTmHvacClntTM;VcFiHvacCooltTOffsMon;FID for inhibition of Hvac Temp Offset Check Diagnostics;;; -VcProtNe;VcFiFsIdleSpdLimEMS;VcFi failsafe for minimum idle speed from EMS supplier;to be used with HPRLF;; -VcProtNe;VcFiFsEngSpdLimnEMS;VcFi failsafe for maximum engine speed from EMS supplier;to be used with HPRLF;; -VcProtInj;VcFiFsInjPrmDurEMS;VcFi failsafe for homogeneous injection parameters and inj. duration from EMS supplier;to be used with HPRLF;; -VcPpmMvem;VcFiMvSysMon;VcFi for Mv system faults;;; -VcPpmMvem;VcFiMvBattEOLMon;VcFi for Mv battery end of life detection;;; -AcPTOffsMonr;VcFiPTOffsMonr;VcFi for AC system pressure and temperature offset monitor;;; -AcPTOffsMonr;VcFiFsCmprOutP;Failsafe for AC Compressor out pressure sensor reconfiguration;;; -AcPTOffsMonr;VcFiFsCmprInP;Failsafe for AC Compressor in pressure sensor reconfiguration;;; -AcPTOffsMonr;VcFiFsOhxP;Failsafe for OXH pressure sensor reconfiguration;;; -AcPTOffsMonr;VcFiFsWcndOutP;Failsafe for Water cooled condenser pressure sensor reconfiguration;;; -AcPTOffsMonr;VcFiFsChillrOutP;Failsafe for Chiller out pressure sensor reconfiguration;;; -AcPTOffsMonr;VcFiFsCmprOutT;Failsafe for AC Compressor out temperature sensor reconfiguration;;; -AcPTOffsMonr;VcFiFsCmprInT;Failsafe for AC Compressor in temperature sensor reconfiguration;;; -AcPTOffsMonr;VcFiFsOhxT;Failsafe for OXH temperature sensor reconfiguration;;; -AcPTOffsMonr;VcFiFsWcndOutT;Failsafe for Water cooled condenser temperature sensor reconfiguration;;; -AcPTOffsMonr;VcFiFsChillrOutT;Failsafe for Chiller out temperature sensor reconfiguration;;; -AcWcndVlvMonr;VcFiWcndVlvMonr;VcFi for Water cooled condenser shut off valve monitor;;; -AcWcndVlvMonr;VcFiFsWcndVlvCdng;Failsafe for conditioning of Water cooled condenser shut off valve;;; -AcWcndBypVlvMonr;VcFiWcndBypVlvMonr;VcFi for Water cooled condenser bypass shut off valve monitor;;; -AcWcndBypVlvMonr;VcFiFsWcndBypVlvCdng;Failsafe for conditioning of Water cooled condenser bypass shut off valve;;; -AcOhxToCmprVlvMonr;VcFiOhxToCmprVlvMonr;VcFi for OHX to compressor shut off valve monitor;;; -AcOhxToCmprVlvMonr;VcFiFsOhxToCmprVlvCdng;Failsafe for conditioning of OHX to compressor shut off valve;;; -AcOhxToCmprVlvMonr;VcFiFsLimdCoolg;Failsafe for limitation of pressure during cooling (open Wcond bypass valve);;; -AcEvaprVlvMonr;VcFiEvaprVlvMonr;VcFi for Evaporator shut off valve monitor;;; -AcEvaprVlvMonr;VcFiFsEvaprVlvCdng;Failsafe for conditioning of Evaporator shut off valve;;; -AcEvaprVlvMonr;VcFiFsEvaprNotAvl;Failsafe for indication of Evaporator not available;;; -AcWcndChkVlvMonr;VcFiWcndChkVlvMonr;VcFi for Water cooled condenser check valve and OHX EXV plausibility monitor;;; -AcWcndChkVlvMonr;VcFiFsWcndNotAvl;Failsafe for indication of Water cooled condenser not available;;; -AcOhxChkVlvMonr;VcFiOhxChkVlvMonr;VcFi for OHX check valve monitor;;; -AcOhxChkVlvMonr;VcFiFsOhxNotAvl;Failsafe for indication of OHX not available;;; -AcChillrVlvMonr;VcFiChillrVlvMonr;VcFi for chiller valve, EXV or checkvalve, monitor;;; -AcChillrVlvMonr;VcFiFsChillrNotAvl;Failsafe for indication of Chiller not available;;; -AcExVlvMonr;VcFiExVlvMonr;VcFi for EX valve monitor;;; -AcExVlvMonr;VcFiFsOhxExVlvInin;Failsafe for initialization of EXV to OHX;;; -AcExVlvMonr;VcFiFsChillrExVlvInin;Failsafe for initialization of Chiller EXV;;; -AcExVlvMonr;VcFiFsOhxExVlvImps;Failsafe for reconfiguration or lowered status flag of EXV to OHX;;; -AcExVlvMonr;VcFiFsChillrExVlvImps;Failsafe for reconfiguration or lowered status flag of Chiller EXV;;; -AcACCAMonr;VcFiACCAMonr;VcFi for Electrical AC compressor monitor;;; -AcACCAMonr;VcFiFsCmprNotAvl;Failsafe for indication of Electrical AC compressor not available;;; -AcACCAMonr;VcFiFsCmprWoHpNotAvl;Failsafe for indication of Electrical AC compressor not available in basic AC system;;; -AcEvaprMonr;VcFiEvaprMonr;VcFi for Evaporator monitor;;; -AcPOffsWoHpMonr;VcFiPOffsWoHpMonr;VcFi for AC pressure offset monitor in basic AC system;;; -AcPOffsWoHpMonr;VcFiFsCmprOutPWoHp;Failsafe for AC Compressor out pressure sensor reconfiguration in basic AC system;;; -AcPOffsWoHpMonr;VcFiFsChillrOutPWoHp;Failsafe for Chiller out pressure sensor reconfiguration in basic AC system;;; -AcTOffsWoHpMonr;VcFiTOffsWoHpMonr;VcFi for AC temperature offset monitor in basic AC system;;; -AcTOffsWoHpMonr;VcFiFsCmprOutTWoHp;Failsafe for AC Compressor out temperature sensor reconfiguration in basic AC system;;; -AcTOffsWoHpMonr;VcFiFsChillrOutTWoHp;Failsafe for Chiller out temperature sensor reconfiguration in basic AC system;;; -AcEvaprVlvWoHpMonr;VcFiEvaprVlvWoHpMonr;VcFi for Evaporator shut off valve monitor in basic AC system;;; -AcEvaprVlvWoHpMonr;VcFiFsEvaprWoHpNotAvl;Failsafe for indication of Evaporator not available in basic AC system;;; -AcChillrVlvWoHpMonr;VcFiChillrVlvWoHpMonr;VcFi for chiller valve, EXV or checkvalve, monitor in basic AC system;;; -AcChillrVlvWoHpMonr;VcFiFsChillrWoHpNotAvl;Failsafe for indication of Chiller not available in basic AC system;;; -AcSysProtnMonr;VcFiSysProtnMonr;VcFi for Ac system protection monitor;;; -CmptmtClntTOffsDiag;VcFiCmptmtClntTOffs;VcFi for compartment coolant temperature offset monitor;;; -CmptmtClntTStkDiag;VcFiCmptmtClntTStk;VcFi for compartment coolant temperature stuck monitor;;; -EdClntTOffsDiag;VcFiEdClntTOffs;VcFi for ED coolant temperature offset monitor;;; -EdClntTStkDiag;VcFiEdClntTStk;VcFi for ED coolant temperature stuck monitor;;; -EdVlvDiag;VcFiEdVlv;VcFi for ED valve stuck monitor;;; -HvacVlvDiag;VcFiHvacVlv;VcFi for Hvac valve stuck monitor;;; -HvBattVlvStkClsdDiag;VcFiHvBattVlv;VcFi for HvBatt valve stuck closed and stuck open monitor;;; -LinPrpVlvDiag;VcFiLinPrpVlv;VcFi for Lin proportional valve monitor;;; -LinPmpDiag;VcFiLinDtElecPmp;VcFi for Lin monitor for ED coolant pump;;; -LinPmpDiag;VcFiLinCmptmtPmp;VcFi for Lin monitor for compartment coolant pump;;; -VcEmiPlsM;VcFiMidO2SnsrPlausMon;Function Id for middle oxygen sensor plausability monitor;;; -VcScAAccPed;VcFiScAAccPedL1;VcFi for L1 AccPed plausubility monitor DTC;;x; -VcScBAccPed;VcFiScBAccPedL2;VcFi for L2 AccPed plausubility monitor DTC;;x; -VcCmpntSts;VcFiMissHbFan1;Function Id for heartbeat missing for fan 1;;x; -VcCmpntSts;VcFiMissHbFan2;Function Id for heartbeat missing for fan 2;;x; -AcSysProtnMonr;VcFiFsAcCoolgNotAvl;Failsafe for indication of Cooling function not available;;; -AcSysProtnMonr;VcFiFsAcHeatgNotAvl;Failsafe for indication of Heating function not available;;; -LinPmpDiag;VcFiLinDtElecPmpSpd;Function Id for speed error on DtElec coolant pump;;; -LinPmpDiag;VcFiLinCmptmtPmpSpd;Function Id for speed error on compartment coolant pump;;; -ThermDiagSigCdn;VcFiFsHvBattInT;Failsafe for reconfiguration of Hv battery inlet coolant temperature;;; -VcCmpntSts;VcFiFsCooltTInCmptmt2;Failsafe for compartment coolant temperature sensor 2;;x; -VcEmiPlsM;VcFiAftO2SnsrPlausMon;Function Id for after oxygen sensor plausability monitor;;; -VcTmAfReq;VcFiFsMinAirFlowReq;FiFs for activating a minimum airflow request though the front radiator package;;; -VcOilTMon;VcFiOilTMon;VcFi for oil temperature monitor;;; -VcNoxSensMgr;VcFiNOxSensMidVoltageDiag;Inhibit voltage diag;Mid sensor;; -VcNoxSensMgr;VcFiNOxSensMidProbeLnDiag;Inhibit probe line diag (incl. Heater line);Mid sensor;; -VcNoxSensMgr;VcFiNOxSensMidHeaterDiag;Inhibit heater diag;Mid sensor;; -VcNoxSensMgr;VcFiNOxSensMidMountingDiag;Inhibit mounting diag;Mid sensor;; -VcNoxSensMgr;VcFiNOxSensMidAvailabilityDiag;Inhibit availability diag;Mid sensor;; -VcNoxSensMgr;VcFiNOxSensMidReadinessDiag;Inhibit readiness diag;Mid sensor;; -VcNoxSensMgr;VcFiNOxSensMidCurveDiagA;Inhibit curve diag A;Mid sensor;; -VcNoxSensMgr;VcFiFsNOxSensMidError;Failsafe for transition to error state;Mid sensor;; -VcNoxSensMgr;VcFiFsNOxSensMidFreezeNOx;Failsafe for freezing NOx value;Mid sensor;; -VcNoxSensMgr;VcFiFsNOxSensMidFreezeLambda;Failsafe for freezing lambda value;Mid sensor;; -VcNoxSensMgr;VcFiFsNOxSensMidModelNOx;Failsafe for using modeled Nox instead of sensor value;Mid sensor;; -VcNoxSensMgr;VcFiFsNOxSensMidModelLambda;Failsafe for using modeled lambda instead of sensor value;Mid sensor;; -VcLamCilM;VcFiFsCILAR;Failsafe for CILM faults;;; -VcLamCilM;VcFiFsCILC;Failsafe forCILM faults;;; -VcObdExhTemp;VcFiExhTempCatInit;Function identifier for T1 temperature sensor key-on monitor;;; -VcObdExhTemp;VcFiExhTempDpfInit;Function identifier for T2 temperature sensor key-on monitor;;; -VcObdExhTemp;VcFiExhTempScrInit;Function identifier for T3 temperature sensor key-on monitor;;; -VcObdScr;VcFiScr1ConvEff;Function identifier for SCR1 Conversion Efficiency;;; -VcObdScr;VcFiScr2ConvEff;Function identifier for SCR2 Conversion Efficiency;;; -VcObdNoxSnsrElec;VcFiNOxSnsrUsVltg;Function identifier for Nox Us Voltage too high/low error;;; -VcObdNoxSnsrElec;VcFiNOxSnsrMidVltg;Function identifier for Nox Mid Voltage too high/low error;;; -VcObdNoxSnsrElec;VcFiNOxSnsrDsVltg;Function identifier for Nox Ds Voltage too high/low error;;; -VcObdNoxSnsrElec;VcFiNOxSnsrUsProbeLn;Function identifier for Nox Us Probe line electrical error;;; -VcObdNoxSnsrElec;VcFiNOxSnsrMidProbeLn;Function identifier for Nox Mid Probe line electrical error;;; -VcObdNoxSnsrElec;VcFiNOxSnsrDsProbeLn;Function identifier for Nox Ds Probe line electrical error;;; -VcObdNoxSnsrElec;VcFiNOxSnsrUsHtrLn;Function identifier for Nox Us Heater line electrical error;;; -VcObdNoxSnsrElec;VcFiNOxSnsrMidHtrLn;Function identifier for Nox Mid Heater line electrical error;;; -VcObdNoxSnsrElec;VcFiNOxSnsrDsHtrLn;Function identifier for Nox Ds Heater line electrical error;;; -VcObdNoxStartUp;VcFiNOxSnsrUsHtr;Function identifier for Nox Us Heater performance error;;; -VcObdNoxStartUp;VcFiNOxSnsrMidHtr;Function identifier for Nox Mid Heater performance error;;; -VcObdNoxStartUp;VcFiNOxSnsrDsHtr;Function identifier for Nox Ds Heater performance error;;; -VcObdNoxStartUp;VcFiNOxSnsrUsReady;Function identifier for Nox Us readiness not reached in time;;; -VcObdNoxStartUp;VcFiNOxSnsrMidReady;Function identifier for Nox Mid readiness not reached in time;;; -VcObdNoxStartUp;VcFiNOxSnsrDsReady;Function identifier for Nox Ds readiness not reached in time;;; -VcIntkVlvM;VcFiIntkVlv;Function identifier for intake valve monitor;;; -VcTmAf;VcFiFsAirCoolgLimHiFan2;VcFi indicates that second fan is faulty;;x; diff --git a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_IUMPR.csv b/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_IUMPR.csv deleted file mode 100644 index b7d7c38..0000000 --- a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_IUMPR.csv +++ /dev/null @@ -1,206 +0,0 @@ -;;;;;PROJECTS; -Model name;IUMPR Id Name;Description;Controlling FiD;Comments;ClimCtr;Old Id -VcAesTrboM;Vc09BoostHiPlausMon;Ratio Id for Boost Pressure High Rationality Monitor;VcFiBoostPPlausMon;;;BSTR_HI -VcAesTrboM;Vc09BoostLoPlausMon;Ratio Id for Boost Pressure Low Rationality Monitor;VcFiBoostPPlausMon;;;BSTR_LO -VcAesTrboMg3;Vc09Boost1HiPlausMon;Ratio Id for Boost Pressure 1 High Rationality Monitor;VcFiBoostPPlausMon;;; -VcAesTrboMg3;Vc09Boost1LoPlausMon;Ratio Id for Boost Pressure 1 Low Rationality Monitor;VcFiBoostPPlausMon;;; -VcAesTrboMg3;Vc09Boost2HiPlausMon;Ratio Id for Boost Pressure 2 High Rationality Monitor;VcFiBoostPPlausMon;;; -VcAesTrboMg3;Vc09Boost2LoPlausMon;Ratio Id for Boost Pressure 2 Low Rationality Monitor;VcFiBoostPPlausMon;;; -VcAesObd;Vc09PCVLeakMon;Ratio Id for PCV Leakage Monitor;VcFiPCVLeakMon;;; -VcEmiCatM;Vc09CatMon;Ratio Id for catalyst monitor;VcFiCatMon;;;Vc09EmiCatM -VcEmiOscM;Vc09CatalystO2StorageMon;Ratio Id for catalyst monitor;VcFiCatalystO2StorageMon;;;Vc09CatalystO2StorageMon -VcEmiOscM;Vc09SecO2SnsrDynMon;Ratio Id for catalyst monitor;VcFiCatalystO2StorageMon;;; -VcEmiAdpM;Vc09SecO2AdpMon;Ratio Id for secondary fuel trim monitor;VcFiSecO2AdpMon;;;Vc09EmiAdpM -VcEmiPlsM;Vc09SecO2SnsrPlausMon;Ratio Id for secondary oxygen sensor plausability monitor;VcFiSecO2SnsrPlausMon;;;Vc09EmiPlsM -VcLamDynCcM;Vc09PrimO2SnsrSlowRespMon;Ratio ID for front lambda sensor slow response;VcFiPrimO2SnsrSlowRespMon;;;Vc09SlowResp -VcLamAdpM;Vc09LamAdpMon;Ratio ID for Fueltrim;VcFiLamAdpMon;;;Vc09LamDynM -VcTempKohlM;Vc09AmbTKohlHi;Ratio Id for offset monitor of the ambient air temperature sensor, offset high;VcFiAmbTKohlM;;;KOAMBTH -VcTempKohlM;Vc09AmbTKohlLo;Ratio Id for offset monitor of the ambient air temperature sensor, offset low;VcFiAmbTKohlM;;;KOAMBTL -VcTempKohlM;Vc09IntkAirTKohlHi;Ratio Id for offset monitor of the intake air temperature sensor, offset high;VcFiIntkAirTKohlM;;;KOIATH -VcTempKohlM;Vc09IntkAirTKohlLo;Ratio Id for offset monitor of the intake air temperature sensor, offset low;VcFiIntkAirTKohlM;;;KOIATL -VcTempKohlM;Vc09BstTKohlHi;Ratio Id for offset monitor of the boost air temperature sensor, offset high;VcFiBstTKohlM;;;KOBATH -VcTempKohlM;Vc09BstTKohlLo;Ratio Id for offset monitor of the boost air temperature sensor, offset low;VcFiBstTKohlM;;;KOBATL -VcTempKohlM;Vc09ClntTKohlHi;Ratio Id for offset monitor of the engine coolant temperature sensor, offset high;VcFiClntTKohlM;;;KOECTH -VcTempKohlM;Vc09ClntTKohlLo;Ratio Id for offset monitor of the engine coolant temperature sensor, offset low;VcFiClntTKohlM;;;KOECTL -VcTempKohlM;Vc09OilTKohlHi;Ratio Id for offset monitor of the oil temperature sensor, offset high;VcFiOilTKohlM;;;KOOILTH -VcTempKohlM;Vc09OilTKohlLo;Ratio Id for offset monitor of the oil temperature sensor, offset low;VcFiOilTKohlM;;;KOOILTL -VcTempKohlM;Vc09InManiTKohlHi;Ratio Id for offset monitor of the intake manifold air temperature sensor, offset high;VcFiInManiTKohlM;;;KOMATH -VcTempKohlM;Vc09InManiTKohlLo;Ratio Id for offset monitor of the intake manifold air temperature sensor, offset low;VcFiInManiTKohlM;;;KOMATL -VcTempKohlM;Vc09CisgTKohlHi;Ratio Id for offset monitor of the Crank ISG temperature sensor, offset high;VcFiCisgTKohlM;;;KOCISGTH -VcTempKohlM;Vc09CisgTKohlLo;Ratio Id for offset monitor of the Crank ISG temperature sensor, offset low;VcFiCisgTKohlM;;;KOCISGTL -VcTempKohlM;Vc09BstT2KohlHi;Ratio Id for offset monitor of the boost air temperature sensor 2, offset high;VcFiBstT2KohlM;;; -VcTempKohlM;Vc09BstT2KohlLo;Ratio Id for offset monitor of the boost air temperature sensor 2, offset low;VcFiBstT2KohlM;;; -VcTempKohlM;Vc09LtClntWcacTKohlHi;Ratio Id for offset monitor of the coolant temp sensor in LT wcac circuit, offset high;VcFiLtClntWcacTKohlM;;; -VcTempKohlM;Vc09LtClntWcacTKohlLo;Ratio Id for offset monitor of the coolant temp sensor in LT wcac circuit, offset low;VcFiLtClntWcacTKohlM;;; -VcTempKohlM;Vc09PowerPulseTKohlHi;Ratio Id for offset monitor of the power pulse temperature sensor, offset high;VcFiPowerPulseTKohlM;;; -VcTempKohlM;Vc09PowerPulseTKohlLo;Ratio Id for offset monitor of the power pulse temperature sensor, offset low;VcFiPowerPulseTKohlM;;; -VcTempKohlM;Vc09EChargerTKohlHi;Ratio Id for offset monitor of the ECharger temperature sensor, offset high;VcFiEChargerTKohlM;;; -VcTempKohlM;Vc09EChargerTKohlLo;Ratio Id for offset monitor of the ECharger temperature sensor, offset low;VcFiEChargerTKohlM;;; -VcTempKohlM;Vc09WcacUsAirTKohlHi;Ratio Id for offset monitor of the WCAC upstream air temperature sensor, offset high;VcFiWcacUsAirTKohlM;;; -VcTempKohlM;Vc09WcacUsAirTKohlLo;Ratio Id for offset monitor of the WCAC upstream air temperature sensor, offset low;VcFiWcacUsAirTKohlM;;; -VcTempKohlM;Vc09LPFuelTKohlHi;Ratio Id for offset monitor of the LP fuel temperature sensor, offset high;VcFiLPFuelTKohlM;;; -VcTempKohlM;Vc09LPFuelTKohlLo;Ratio Id for offset monitor of the LP fuel temperature sensor, offset low;VcFiLPFuelTKohlM;;; -VcTempStkM;Vc09BstTStkM;Ratio Id for stuck in range monitor of the boost air temperature sensor;VcFiBstTStkM;;;BATD -VcTempStkM;Vc09ClntTStkM;Ratio Id for stuck in range monitor of the engine coolant temperature sensor;VcFiClntTStkM;;;CLTD -VcTempStkM;Vc09IntkAirTStkM;Ratio Id for stuck in range monitor of the intake air temperature sensor;VcFiIntkAirTStkM;;;IATD -VcTempStkM;Vc09InManiTStkM;Ratio Id for stuck in range monitor of the intake manifold air temperature sensor;VcFiInManiTStkM;;;MATD -VcTempStkM;Vc09BstT2StkM;Ratio Id for stuck in range monitor of the boost air temperature sensor 2;VcFiBstT2StkM;;; -VcTempStkM;Vc09LtClntWcacTStkM;Ratio Id for stuck in range monitor of the coolant temp sensor in LT wcac circuit;VcFiLtClntWcacTStkM;;; -VcTempStkM;Vc09PowerPulseTStkM;Ratio Id for stuck in range monitor of the power pulse temperature sensor;VcFiPowerPulseTStkM;;;PPTD -VcTempStkM;Vc09EChrgrTStkM;Ratio Id for stuck in range monitor of the ECharger temperature sensor;VcFiEChrgrTStkM;;; -VcTempStkM;Vc09OilTStkM;Ratio Id for stuck in range monitor of the Oil temperature sensor;VcFiOilTStkM;;; -VcTempStkM;Vc09WcacUsAirTStkM;Ratio Id for stuck in range monitor of the WCAC upstream air temperature sensor;VcFiWcacUsAirTStkM;;; -VcTempStkM;Vc09LPFuelTStkM;Ratio Id for stuck in range monitor of the Fuel temperature sensor;VcFiLPFuelTStkM;;; -VcTempThM;Vc09ThLk;Ratio Id for thermostat leakage fault;VcFiThM;;;THMS_LK -VcTempThM;Vc09ThSlw;Ratio Id for thermostat slow heat up fault;VcFiThM;;;THMS_SLW -VcTempThContnsM;Vc09ThContnsMon;Ratio Id for continuous thermostat fault;VcFiThContnsM;;; -VcAesEgrM;Vc09EgrLoFlw;Ratio Id for EGR Lo flow monitoring;VcFiEgrSysMon;;; -VcAesEgrM;Vc09EgrHiFlw;Ratio Id for EGR Hi flow monitoring;VcFiEgrSysMon;;; -VcAesEgrM;Vc09EgrAr;Ratio Id for EGR flow monitoring;VcFiEgrAr;;;EGRAR -VcAesEgrM;Vc09EgrClrMnr;Ratio Id for EGR cooler monitoring;VcFiEgrClrMnr;;;EGRCLRR -VcObdDpfDpms;Vc09DPFPerfDpms;Ratio Id for DPF soot filtration efficiency below threshold Soot Sensor ;VcFiDPFPerfDpms;;;DPFPERF -VcObdDpf;Vc09DPFPerfDP;Ratio Id for DPF soot filtration efficiency below threshold DP-sensor;VcFiDPFPerfDP;;; -VcAcPMon;Vc09AcPSnsrStck;Ratio Id for AC pressure sensor stuck;VcFiAcPMon;;;ACPS_S -VcTmEdMon;Vc09EdWtrPmpTOffsHi;Ratio Id for ED circuit water pump temp sensor offset high;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdWtrPmpTOffsLo;Ratio Id for ED circuit water pump temp sensor offset low;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdLtClntTOffsHi;Ratio Id for ED circuit coolant temp sensor offset high;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdLtClntTOffsLo;Ratio Id for ED circuit coolant temp sensor offset low;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdCiddClntTOffsHi;Ratio Id for ED circuit Cidd coolant temp sensor offset high;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdCiddClntTOffsLo;Ratio Id for ED circuit Cidd coolant temp sensor offset low;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdDcDcTOffsHi;Ratio Id for ED circuit DcDc temp sensor offset high;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdDcDcTOffsLo;Ratio Id for ED circuit DcDc temp sensor offset low;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdHvgWndgTOffsHi;Ratio Id for ED circuit Hvg winding temp sensor offset high;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdHvgWndgTOffsLo;Ratio Id for ED circuit Hvg winding temp sensor offset low;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdHvgInvTOffsHi;Ratio Id for ED circuit Hvg interver temp sensor offset high;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdHvgInvTOffsLo;Ratio Id for ED circuit Hvg inverter temp sensor offset low;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdEradWndgTOffsHi;Ratio Id for ED circuit Erad winding temp sensor offset high;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdEradWndgTOffsLo;Ratio Id for ED circuit Erad winding temp sensor offset low;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdEradInvTOffsHi;Ratio Id for ED circuit Erad inverter temp sensor offset high;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdEradInvTOffsLo;Ratio Id for ED circuit Erad inverter temp sensor offset low;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdWtrPmpTStuck;Ratio Id for ED circuit water pump temp sensor stuck;VcFiEdTStuckMon;;; -VcTmEdMon;Vc09EdLtClntTStuck;Ratio Id for ED circuit coolant temp sensor stuck;VcFiEdTStuckMon;;; -VcTmEdMon;Vc09EdCiddClntTStuck;Ratio Id for ED circuit Cidd coolant temp sensor stuck;VcFiEdTStuckMon;;; -VcTmEdMon;Vc09EdDcDcTStuck;Ratio Id for ED circuit DcDc temp sensor stuck;VcFiEdTStuckMon;;; -VcTmEdMon;Vc09EdHvgWndgTStuck;Ratio Id for ED circuit Hvg winding temp sensor stuck;VcFiEdTStuckMon;;; -VcTmEdMon;Vc09EdHvgInvTStuck;Ratio Id for ED circuit Hvg inverter temp sensor stuck;VcFiEdTStuckMon;;; -VcTmEdMon;Vc09EdEradWndgTStuck;Ratio Id for ED circuit Erad winding temp sensor stuck;VcFiEdTStuckMon;;; -VcTmEdMon;Vc09EdEradInvTStuck;Ratio Id for ED circuit Erad inverter temp sensor stuck;VcFiEdTStuckMon;;; -VcTmEdMon;Vc09EdCoolgPfmncLo;Ratio Id for ED circuit system cooling performance error;VcFiEdCoolgPfmncMon;;; -VcTmEdMon;Vc09EdElecMotTOffsHi;Ratio Id for ED circuit Electric Motor temp sensor offset high;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdElecMotTOffsLo;Ratio Id for ED circuit Electric Motor temp sensor offset low;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdElecMotTStuck;Ratio Id for ED circuit Electric Motor temp sensor stuck;VcFiEdTStuckMon;;; -VcObdLnt;Vc09ObdLnt;Ratio Id for LNT performance monitor;VcFiObdLnt;;;NTMA -VcObdLntNox;Vc09ObdLntNox;Ratio Id for LNT performance monitor;VcFiObdLntNox;;; -VcMtThMon;Vc09MtWtrPmpTOffsLo;Ratio Id for ED circuit water pump temp sensor offset low;VcFiMtWtrPmpTOffs;;;EdcpKoTLow -VcMtThMon;Vc09MtLtClntTOffsHi;Ratio Id for ED circuit coolant temp sensor offset high;VcFiMtTOffs;;;MTCSKoHi -VcMtThMon;Vc09MtLtClntTOffsLo;Ratio Id for ED circuit coolant temp sensor offset low;VcFiMtTOffs;;;MTCSKoLow -VcMtThMon;Vc09MtCiddClntTOffsHi;Ratio Id for ED circuit Cidd coolant temp sensor offset high;VcFiMtCiddClntTOffs;;;CcidKoHi -VcMtThMon;Vc09MtCiddClntTOffsLo;Ratio Id for ED circuit Cidd coolant temp sensor offset low;VcFiMtCiddClntTOffs;;;CcidKoLow -VcMtThMon;Vc09MtEradInvTOffsHi;Ratio Id for ED circuit Erad inverter temp sensor offset high;VcFiMtTOffs;;;EradKoHi -VcMtThMon;Vc09MtEradInvTOffsLo;Ratio Id for ED circuit Erad inverter temp sensor offset low;VcFiMtTOffs;;;RtIdEradKoLow -VcMtThMon;Vc09MtWtrPmpTStuck;Ratio Id for ED circuit water pump temp sensor stuck (EDCP);VcFiMtWtrPmpTStuck;;;RtIdEdcpTStuck -VcMtThMon;Vc09MtLtClntTStuck;Ratio Id for ED circuit coolant temp sensor stuck;VcFiMtLtClntTStuck;;;MTCSStuck -VcMtThMon;Vc09MtCiddClntTStuck;Ratio Id for ED circuit Cidd coolant temp sensor stuck;VcFiMtCiddClntTStuck;;;CcidTStuck -VcMtThMon;Vc09MtHvgWndgTStuck;Ratio Id for ED circuit Hvg winding temp sensor stuck;VcFiMtHvgWndgTStuck;;;STCISGT -VcMtThMon;Vc09MtEradInvTStuck;Ratio Id for ED circuit Erad inverter temp sensor stuck;VcFiMtEradInvTStuck;;;EradTStuck -VcMtThMon;Vc09HvBattTOutStuck;Ratio Id for HvBattery Coolant Outlet Temp sensor stuck;VcFiHvBattTOut;;;HvBattTStuck -VcMtThMon;Vc09HvBattTOutOffsHi;Ratio Id for HvBattery Coolant Outlet Temp sensor offset high;VcFiHvBattTOffs;;;HvBattTKoHi -VcMtThMon;Vc09HvBattTOutOffsLo;Ratio Id for HvBattery Coolant Outlet Temp sensor offset low;VcFiHvBattTOffs;;;HvBattTKoLow -VcMtThMon;Vc09MtThStuckClsd;Ratio Id for ED cicruit thermostat stuck closed;VcFiMtThStuck;;;MTTHMS_CL -VcMtThMon;Vc09MtThStuckOpen;Ratio Id for ED cicruit thermostat stuck open;VcFiMtThStuck;;;MTTHMS_OP -VcMtThMon;Vc09HvBattActCoolgPerfLo;Ratio Id for reduced cooling performance for High voltage battery, AC assisted chiller cooling;VcFiHvBattCool;;;HvBattCool_1 -VcMtThMon;Vc09HvBattActCoolgPerfLoMIL;Ratio Id for reduced cooling performance for High voltage battery, AC assisted chiller cooling;VcFiHvBattCool;;;HvBattCool_2 -VcMtThMon;Vc09HvBattPasCoolgPerfLoMIL;Ratio Id for reduced cooling performance for High voltage battery, radiator cooling;VcFiHvBattCool;;;HvBattCool_3 -VcMtThMon;Vc09HvBattPasCoolgPerfLo;Ratio Id for reduced cooling performance for High voltage battery, radiator cooling;VcFiHvBattCool;;;HvBattCool_4 -VcNoxSensMgr;Vc09NOxSensUsVoltageError;Ratio Id for Voltage too high/low error;VcFiNOxSensUsVoltageDiag;;; -VcNoxSensMgr;Vc09NOxSensUsProbeLnError;Ratio Id for Probe line electrical error;VcFiNOxSensUsProbeLnDiag;;; -VcNoxSensMgr;Vc09NOxSensUsHeaterLnError;Ratio Id for Heater line electrical error;VcFiNOxSensUsProbeLnDiag;;; -VcNoxSensMgr;Vc09NOxSensUsHeaterError;Ratio Id for Heater performance error;VcFiNOxSensUsHeaterDiag;;; -VcNoxSensMgr;Vc09NOxSensUsMountingError;Ratio Id for Mounting error (not in exhaust flow);VcFiNOxSensUsMountingDiag;;; -VcNoxSensMgr;Vc09NOxSensUsAvailabilityError;Ratio Id for NOx signal status invalid too much;VcFiNOxSensUsAvailabilityDiag;;; -VcNoxSensMgr;Vc09NOxSensUsReadinessError;Ratio Id for Sensor readiness not reached in time;VcFiNOxSensUsReadinessDiag;;; -VcNoxSensMgr;Vc09NOxSensUsCurveDiagAError;Ratio Id for Nox signal slope error ;VcFiNOxSensUsCurveDiagA;;; -VcNoxSensMgr;Vc09NOxSensDsVoltageError;Ratio Id for Voltage too high/low error;VcFiNOxSensDsVoltageDiag;;; -VcNoxSensMgr;Vc09NOxSensDsProbeLnError;Ratio Id for Probe line electrical error;VcFiNOxSensDsProbeLnDiag;;; -VcNoxSensMgr;Vc09NOxSensDsHeaterLnError;Ratio Id for Heater line electrical error;VcFiNOxSensDsProbeLnDiag;;; -VcNoxSensMgr;Vc09NOxSensDsHeaterError;Ratio Id for Heater performance error;VcFiNOxSensDsHeaterDiag;;; -VcNoxSensMgr;Vc09NOxSensDsMountingError;Ratio Id for Mounting error (not in exhaust flow);VcFiNOxSensDsMountingDiag;;; -VcNoxSensMgr;Vc09NOxSensDsAvailabilityError;Ratio Id for NOx signal status invalid too much;VcFiNOxSensDsAvailabilityDiag;;; -VcNoxSensMgr;Vc09NOxSensDsReadinessError;Ratio Id for Sensor readiness not reached in time;VcFiNOxSensDsReadinessDiag;;; -VcNoxSensMgr;Vc09NOxSensDsCurveDiagAError;Ratio Id for Nox signal slope error ;VcFiNOxSensDsCurveDiagA;;; -VcObdNoxSOfs;Vc09NOxSensUsOfsTst;Ratio Id for Upstream NOx sensor offset test;VcFiNOxSensOfs;;; -VcObdNoxSOfs;Vc09NOxSensMidOfsTst;Ratio Id for Mid NOx sensor offset test;VcFiNOxSensOfs;;; -VcObdNoxSOfs;Vc09NOxSensDsOfsTst;Ratio Id for Downstream NOx sensor offset test;VcFiNOxSensOfs;;; -VcObdNoxSO2;Vc09NOxSensUsOxyToMdl;Ratio Id for Upstream NOx sensor O2 concentration sensor to model;VcFiNOxSensO2;;; -VcObdNoxSO2;Vc09NOxSensMidOxyToMdl;Ratio Id for Mid NOx sensor O2 concentration sensor to model;VcFiNOxSensO2;;; -VcObdNoxSO2;Vc09NOxSensDsOxyToMdl;Ratio Id for Downstream NOx sensor O2 concentration sensor to model;VcFiNOxSensO2;;; -VcObdScr;Vc09ScrConvEff;Ratio Id for SCR Conversion efficiency too low;VcFiScrConvEff;;; -VcObdScr;Vc09Scr1ConvEff;Ratio Id for SCR1 Conversion efficiency too low;VcFiScr1ConvEff;;; -VcObdScr;Vc09Scr2ConvEff;Ratio Id for SCR2 Conversion efficiency too low;VcFiScr2ConvEff;;; -Unused;Vc09Unused;Unused monitors;VcFiUnused;;; -VcFtivMon;Vc09FtivMon;Ratio Id Fuel tank isolation valve monitor;VcFiFtivMon;;; -VcPurgMon;Vc09PurgMonMp;Ratio Id purge monitor manifold purge ;VcFiPurgMon;;; -VcPurgMon;Vc09PurgMonVp;Ratio Id purge monitor over pressure purge;VcFiPurgMon;;; -VcLamCtrlM;Vc09LamCtrlMFirstSt;Ratio Id lambda control closed loop monitor first start;VcFiLamCtrlM;;; -VcLamCtrlM;Vc09LamCtrlMReSt;Ratio Id lambda control closed loop monitor restart;VcFiLamCtrlM;;; -VcObdGpf;Vc09ObdGpf;Ratio Id for gasoline particle filter monitor;VcFiObdGpf;;; -VcTmEdMon;Vc09EdLtClntPreRadTOffsHi;Ratio Id for ED circuit coolant temp sensor (before radiator) offset high;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdLtClntPreRadTOffsLo;Ratio Id for ED circuit coolant temp sensor (before radiator) offset low;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdLtClntPreRadTStuck;Ratio Id for ED circuit coolant temp sensor (before radiator) stuck;VcFiEdTStuckMon;;; -VcTmEdMon;Vc09EdObc1TOffsHi;Ratio Id for ED circuit OBC1 temp sensor offset high;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdObc1TOffsLo;Ratio Id for ED circuit OBC1 temp sensor offset low;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdObc1TStuck;Ratio Id for ED circuit OBC1 temp sensor stuck;VcFiEdTStuckMon;;; -VcTmEdMon;Vc09EdObc2TOffsHi;Ratio Id for ED circuit OBC2 temp sensor offset high;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdObc2TOffsLo;Ratio Id for ED circuit OBC2 temp sensor offset low;VcFiEdTOffsMon;;; -VcTmEdMon;Vc09EdObc2TStuck;Ratio Id for ED circuit OBC 2temp sensor stuck;VcFiEdTStuckMon;;; -VcLeakMon;Vc09LeakMon;Ratio Id for leakage detection monitor;VcFiLeakMon;;; -VcTmEdMon;Vc09EdCoolgPfmncLo2;Ratio Id for ED circuit system cooling performance error;VcFiEdCoolgPfmncMon;;; -VcTmEdMon;Vc09EdRadrVlvStuckOpen;Ratio Id for ED circuit radiator valve stuck open;VcFiEdCoolgPfmncMon;;; -VcTmEdMon;Vc09EdRadrVlvStuckClsd;Ratio Id for ED circuit radiator valve stuck closed;VcFiEdCoolgPfmncMon;;; -VcLinCptM;Vc09EwpSpdErr;Ratio Id for for Edcp actual speed and req speed mismatch;VcFiEDEwpSpdMon;;; -VcEmiPlsM;Vc09MidO2SnsrPlausMon;Ratio Id for middle oxygen sensor plausability monitor;VcFiMidO2SnsrPlausMon;;; -VcAccelM;Vc09AccelMStuck;Ratio Id for accelerometer monitor stuck check;VcFiAccelMStuck;;; -VcAccelM;Vc09AccelMOffs;Ratio Id for accelerometer monitor offset check;VcFiAccelMOffs;;; -VcObdDpms;Vc09DpmsTPlaus;Ratio Id for Key on check of temperature meander;VcFiDpmsTPlaus;;; -VcObdDpms;Vc09DpmsProtTubePlaus;Ratio Id for Detection of clogged protection tube;VcFiDpmsProtTubePlaus;;; -VcObdDpms;Vc09DpmsHtrPlaus;Ratio Id for Heater plausibility check;VcFiDpmsHtrPlaus;;; -VcObdDpms;Vc09DpmsIDEPlaus;Ratio Id for IDE plausibility check;VcFiDpmsIDEPlaus;;; -VcObdDpms;Vc09DpmsShntCircPlaus;Ratio Id for IDE shunt circuit plausibility check;VcFiDpmsShntCircPlaus;;; -VcObdDpms;Vc09PMSnsrGainFault;Ratio Id for PM sensor gain fault;VcFiPMSnsrGainFault;;; -VcObdDpms;Vc09PMSnsrRegenTOut;Ratio Id for PM sensor regeneration time out;VcFiPMSnsrRegenTOut;;; -VcObdDpms;Vc09PMSnsrOutOfExh;Ratio Id for PM sensor removed/out of exhaust;VcFiPMSnsrOutOfExh;;; -VcObdDpms;Vc09PMSnsrCloggedTip;Ratio Id for PM Sensor clogged tip;VcFiPMSnsrCloggedTip;;; -VcLamCilM;Vc09CilM;Ratio Id for Cylinder Imbalance Monitor;VcFiCilM;;; -VcTempWcacThM;Vc09WcacThSlw;Ratio Id for WCAC cooling circuit slow heat up fault;VcFiWcacThM;;; -VcLinBypVlvM;Vc09BypVlvPosTarDiff ;Ratio Id for Lin Bypass Valve Target VS Position Monitor;VcFiLinBypVlvM;;; -VcCdPinM;Vc09CdPinMHiAct1;Ratio Id for Sliding Camshaft Monitor Actuator Pin 1, High Side;VcFiCdPinM;;; -VcCdPinM;Vc09CdPinMHiAct2;Ratio Id for Sliding Camshaft Monitor Actuator Pin 2, High Side;VcFiCdPinM;;; -VcCdPinM;Vc09CdPinMHiAct3;Ratio Id for Sliding Camshaft Monitor Actuator Pin 3, High Side;VcFiCdPinM;;; -VcCdPinM;Vc09CdPinMHiAct4;Ratio Id for Sliding Camshaft Monitor Actuator Pin 4, High Side;VcFiCdPinM;;; -VcCdPinM;Vc09CdPinMHiAct5;Ratio Id for Sliding Camshaft Monitor Actuator Pin 5, High Side;VcFiCdPinM;;; -VcCdPinM;Vc09CdPinMHiAct6;Ratio Id for Sliding Camshaft Monitor Actuator Pin 6, High Side;VcFiCdPinM;;; -VcCdPinM;Vc09CdPinMHiAct7;Ratio Id for Sliding Camshaft Monitor Actuator Pin 7, High Side;VcFiCdPinM;;; -VcCdPinM;Vc09CdPinMHiAct8;Ratio Id for Sliding Camshaft Monitor Actuator Pin 8, High Side;VcFiCdPinM;;; -VcCdPinM;Vc09CdPinMLoAct1;Ratio Id for Sliding Camshaft Monitor Actuator Pin 1, Low Side;VcFiCdPinM;;; -VcCdPinM;Vc09CdPinMLoAct2;Ratio Id for Sliding Camshaft Monitor Actuator Pin 2, Low Side;VcFiCdPinM;;; -VcCdPinM;Vc09CdPinMLoAct3;Ratio Id for Sliding Camshaft Monitor Actuator Pin 3, Low Side;VcFiCdPinM;;; -VcCdPinM;Vc09CdPinMLoAct4;Ratio Id for Sliding Camshaft Monitor Actuator Pin 4, Low Side;VcFiCdPinM;;; -VcCdPinM;Vc09CdPinMLoAct5;Ratio Id for Sliding Camshaft Monitor Actuator Pin 5, Low Side;VcFiCdPinM;;; -VcCdPinM;Vc09CdPinMLoAct6;Ratio Id for Sliding Camshaft Monitor Actuator Pin 6, Low Side;VcFiCdPinM;;; -VcCdPinM;Vc09CdPinMLoAct7;Ratio Id for Sliding Camshaft Monitor Actuator Pin 7, Low Side;VcFiCdPinM;;; -VcCdPinM;Vc09CdPinMLoAct8;Ratio Id for Sliding Camshaft Monitor Actuator Pin 8, Low Side;VcFiCdPinM;;; -VcTmHvacVlvM;Vc09HvacCooltVlvStuck;Ratio Id for Hvac Valve Stuck Monitor;VcFiHvacVlvMon;;; -VcTmHvacClntTM;Vc09HvacCooltTStuck;Ratio Id for Hvac Coolant Stuck Monitor;VcFiHvacCooltTStuckMon;;; -VcTmHvacClntTM;Vc09HvacCooltTOffsHi;Ratio Id for Hvac Coolant Offset Monitor;VcFiHvacCooltTOffsMon;;; -VcTmHvacClntTM;Vc09HvacCooltTOffsLo;Ratio Id for Hvac Coolant Offset Monitor;VcFiHvacCooltTOffsMon;;; -VcEmiPlsM;Vc09AftO2SnsrPlausMon;Ratio Id for after oxygen sensor plausability monitor;VcFiAftO2SnsrPlausMon;;; -VcOilPrMon;Vc09OilPOffsHiMon;Ratio Id for high offset test monitor;VcFiOilPrMonOffs;;; -VcOilPrMon;Vc09OilPOffsLoMon;Ratio Id for low offset test monitor;VcFiOilPrMonOffs;;; -VcNoxSensMgr;Vc09NOxSensMidVoltageError;Ratio Id for Voltage too high/low error;VcFiNOxSensMidVoltageDiag;;; -VcNoxSensMgr;Vc09NOxSensMidProbeLnError;Ratio Id for Probe line electrical error;VcFiNOxSensMidProbeLnDiag;;; -VcNoxSensMgr;Vc09NOxSensMidHeaterLnError;Ratio Id for Heater line electrical error;VcFiNOxSensMidProbeLnDiag;;; -VcNoxSensMgr;Vc09NOxSensMidHeaterError;Ratio Id for Heater performance error;VcFiNOxSensMidHeaterDiag;;; -VcNoxSensMgr;Vc09NOxSensMidMountingError;Ratio Id for Mounting error (not in exhaMidt flow);VcFiNOxSensMidMountingDiag;;; -VcNoxSensMgr;Vc09NOxSensMidAvailabilityError;Ratio Id for NOx signal statMid invalid too much;VcFiNOxSensMidAvailabilityDiag;;; -VcNoxSensMgr;Vc09NOxSensMidReadinessError;Ratio Id for Sensor readiness not reached in time;VcFiNOxSensMidReadinessDiag;;; -VcNoxSensMgr;Vc09NOxSensMidCurveDiagAError;Ratio Id for Nox signal slope error ;VcFiNOxSensMidCurveDiagA;;; diff --git a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_IUMPRDen.csv b/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_IUMPRDen.csv deleted file mode 100644 index 24f7ee8..0000000 --- a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_IUMPRDen.csv +++ /dev/null @@ -1,64 +0,0 @@ -;;;;This sheet does not have projects -IUMPR Id Name;Description;IUMPR Denominator trigger;Comments; -Vc09CatMon;Ratio Id for catalyst monitor;0;; -Vc09CatalystO2StorageMon;Ratio Id for catalyst monitor;0;; -Vc09SecO2SnsrDynMon;Ratio Id for catalyst monitor;0;; -Vc09SecO2AdpMon;Ratio Id for secondary fuel trim monitor;0;; -Vc09SecO2SnsrPlausMon;Ratio Id for secondary oxygen sensor plausability monitor;0;; -Vc09PrimO2SnsrSlowRespMon;Ratio ID for front lambda sensor slow response;0;; -Vc09LamAdpMon;Ratio ID for Fueltrim;0;; -Vc09AmbTKohlHi;Ratio Id for offset monitor of the ambient air temperature sensor, offset high;2;; -Vc09AmbTKohlLo;Ratio Id for offset monitor of the ambient air temperature sensor, offset low;2;; -Vc09IntkAirTKohlHi;Ratio Id for offset monitor of the intake air temperature sensor, offset high;2;; -Vc09IntkAirTKohlLo;Ratio Id for offset monitor of the intake air temperature sensor, offset low;2;; -Vc09BstTKohlHi;Ratio Id for offset monitor of the boost air temperature sensor, offset high;2;; -Vc09BstTKohlLo;Ratio Id for offset monitor of the boost air temperature sensor, offset low;2;; -Vc09ClntTKohlHi;Ratio Id for offset monitor of the engine coolant temperature sensor, offset high;2;; -Vc09ClntTKohlLo;Ratio Id for offset monitor of the engine coolant temperature sensor, offset low;2;; -Vc09OilTKohlHi;Ratio Id for offset monitor of the oil temperature sensor, offset high;2;; -Vc09OilTKohlLo;Ratio Id for offset monitor of the oil temperature sensor, offset low;2;; -Vc09InManiTKohlHi;Ratio Id for offset monitor of the intake manifold air temperature sensor, offset high;2;; -Vc09InManiTKohlLo;Ratio Id for offset monitor of the intake manifold air temperature sensor, offset low;2;; -Vc09BstTStkM;Ratio Id for stuck in range monitor of the boost air temperature sensor;2;; -Vc09ClntTStkM;Ratio Id for stuck in range monitor of the engine coolant temperature sensor;2;; -Vc09IntkAirTStkM;Ratio Id for stuck in range monitor of the intake air temperature sensor;2;; -Vc09InManiTStkM;Ratio Id for stuck in range monitor of the intake manifold air temperature sensor;2;; -Vc09OilTStkM;Ratio Id for stuck in range monitor of the Oil temperature sensor;2;; -Vc09ThLk;Ratio Id for thermostat leakage fault;2;; -Vc09ThSlw;Ratio Id for thermostat slow heat up fault;2;; -Vc09ThContnsMon;Ratio Id for continuous thermostat fault;0;; -Vc09AcPSnsrStck;Ratio Id for AC pressure sensor stuck;0;; -Vc09PurgMonMp;Ratio Id purge monitor manifold purge ;2;; -Vc09PurgMonVp;Ratio Id purge monitor over pressure purge;1;; -Vc09LamCtrlMFirstSt;Ratio Id lambda control closed loop monitor first start;0;; -Vc09LamCtrlMReSt;Ratio Id lambda control closed loop monitor restart;0;; -Vc09ObdGpf;Ratio Id for gasoline particle filter monitor;0;; -Vc09LeakMon;Ratio Id for leakage detection monitor;2;; -Vc09MidO2SnsrPlausMon;Ratio Id for middle oxygen sensor plausability monitor;0;; -Vc09AccelMStuck;Ratio Id for accelerometer monitor stuck check;0;; -Vc09AccelMOffs;Ratio Id for accelerometer monitor offset check;0;; -Vc09CilM;Ratio Id for Cylinder Imbalance Monitor;0;; -Vc09EdWtrPmpTOffsHi;Ratio Id for ED circuit water pump temp sensor offset high;2;; -Vc09EdWtrPmpTOffsLo;Ratio Id for ED circuit water pump temp sensor offset low;2;; -Vc09EdLtClntTOffsHi;Ratio Id for ED circuit coolant temp sensor offset high;2;; -Vc09EdLtClntTOffsLo;Ratio Id for ED circuit coolant temp sensor offset low;2;; -Vc09EdCiddClntTOffsHi;Ratio Id for ED circuit Cidd coolant temp sensor offset high;2;; -Vc09EdCiddClntTOffsLo;Ratio Id for ED circuit Cidd coolant temp sensor offset low;2;; -Vc09EdDcDcTOffsHi;Ratio Id for ED circuit DcDc temp sensor offset high;2;; -Vc09EdDcDcTOffsLo;Ratio Id for ED circuit DcDc temp sensor offset low;2;; -Vc09EdHvgWndgTOffsHi;Ratio Id for ED circuit Hvg winding temp sensor offset high;2;; -Vc09EdHvgWndgTOffsLo;Ratio Id for ED circuit Hvg winding temp sensor offset low;2;; -Vc09EdHvgInvTOffsHi;Ratio Id for ED circuit Hvg interver temp sensor offset high;2;; -Vc09EdHvgInvTOffsLo;Ratio Id for ED circuit Hvg inverter temp sensor offset low;2;; -Vc09EdEradWndgTOffsHi;Ratio Id for ED circuit Erad winding temp sensor offset high;2;; -Vc09EdEradWndgTOffsLo;Ratio Id for ED circuit Erad winding temp sensor offset low;2;; -Vc09EdEradInvTOffsHi;Ratio Id for ED circuit Erad inverter temp sensor offset high;2;; -Vc09EdEradInvTOffsLo;Ratio Id for ED circuit Erad inverter temp sensor offset low;2;; -Vc09EdWtrPmpTStuck;Ratio Id for ED circuit water pump temp sensor stuck;2;; -Vc09EdLtClntTStuck;Ratio Id for ED circuit coolant temp sensor stuck;2;; -Vc09EdCiddClntTStuck;Ratio Id for ED circuit Cidd coolant temp sensor stuck;2;; -Vc09EdDcDcTStuck;Ratio Id for ED circuit DcDc temp sensor stuck;2;; -Vc09EdHvgWndgTStuck;Ratio Id for ED circuit Hvg winding temp sensor stuck;2;; -Vc09EdHvgInvTStuck;Ratio Id for ED circuit Hvg inverter temp sensor stuck;2;; -Vc09EdEradWndgTStuck;Ratio Id for ED circuit Erad winding temp sensor stuck;2;; -Vc09EdEradInvTStuck;Ratio Id for ED circuit Erad inverter temp sensor stuck;2;; diff --git a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_Mode$06.csv b/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_Mode$06.csv deleted file mode 100644 index ad87300..0000000 --- a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_Mode$06.csv +++ /dev/null @@ -1,101 +0,0 @@ -;;;;;;PROJECTS;Comments -Model name;Mode $06 Name;Description;Fid;Unit and Scaling ID;Comments;ClimCtr;Old Id -VcAesTrboM;Vc06BoostHiPlausMon;Test Result Id for high boost pressure Monitoring;VcFiBoostPPlausMon;17;;;BSTR_HI -VcAesTrboM;Vc06BoostLoPlausMon;Test Result Id for low boost pressure Monitoring;VcFiBoostPPlausMon;17;;;BSTR_LO -VcAesTrboMg3;Vc06Boost1HiPlausMon;Test Result Id for high boost pressure 1 Monitoring;VcFiBoostPPlausMon;17;;; -VcAesTrboMg3;Vc06Boost1LoPlausMon;Test Result Id for low boost pressure 1 Monitoring;VcFiBoostPPlausMon;17;;; -VcAesTrboMg3;Vc06Boost2HiPlausMon;Test Result Id for high boost pressure 2 Monitoring;VcFiBoostPPlausMon;17;;; -VcAesTrboMg3;Vc06Boost2LoPlausMon;Test Result Id for low boost pressure 2 Monitoring;VcFiBoostPPlausMon;17;;; -VcAesObd;Vc06PCVLeakMon;Test Result Id for PCV Leakage Monitor;VcFiPCVLeakMon;17;;; -VcEmiCatM;Vc06CatMon;Test Result Id for catalyst monitor;VcFiCatMon;3A;3A = 0.001g / LSB;; -VcEmiOscM;Vc06CatalystO2StorageMon;Test Result Id for catalyst monitor;VcFiCatalystO2StorageMon;3A;;; -VcEmiOscM;Vc06SecO2SnsrDynMon;Test Result Id for catalyst monitor;VcFiCatalystO2StorageMon;10;10 = 1ms/LSB;; -VcEmiPlsM;Vc06SecO2SnsrPlausLeanMon;Test result Id for secondary oxygen sensor plausability monitor lean;VcFiSecO2SnsrPlausMon;0A;0A = 0.122mV/LSB;; -VcEmiPlsM;Vc06SecO2SnsrPlausRichMon;Test result Id for secondary oxygen sensor plausability monitor rich;VcFiSecO2SnsrPlausMon;0A;;; -VcEmiPlsM;Vc06SecO2SnsrPlausAmplMon;Test result Id for secondary oxygen sensor plausability monitor amplitude;VcFiSecO2SnsrPlausMon;0A;;; -VcLamDynCcM;Vc06LamSnsrSlowRespSlpMon;Test result Id for front lambda sensor slow response;VcFiPrimO2SnsrSlowRespMon;90;90 = 1ms/LSB;; -VcLamDynCcM;Vc06LamSnsrSlowRespMon;Test result Id for front lambda sensor slow response;VcFiPrimO2SnsrSlowRespMon;90;90 = 1ms/LSB;; -VcAesEgrM;Vc06EgrLoFlw;Test result Id for EGR Lo flow fault;VcFiEgrSysMon;28;;; -VcAesEgrM;Vc06EgrHiFlw;Test result Id for EGR Hi flow fault;VcFiEgrSysMon;28;;; -VcAesEgrM;Vc06EgrAr;Test result Id for EGR flow fault;VcFiEgrAr;1;;;EGRAR -VcAesEgrM;Vc06EgrClrMnr;Test result Id for EGR cooler fault;VcFiEgrClrMnr;3;;;EGRCLRR -VcObdDpfDpms;Vc06DPFPerfDpms;Test Result Id for DPF soot filtration efficiency below threshold Soot Sensor ;VcFiDPFPerfDpms;1;;;DPFPERF -VcObdDpf;Vc06DPFPerfDP;Test Result Id for DPF soot filtration efficiency below threshold DP-sensor;VcFiDPFPerfDP;83;;; -VcObdLnt;Vc06ObdLnt;Test Result Id for LNT performance monitor;VcFiObdLnt;3;;;NTMA -VcObdLntNox;Vc06ObdLntNox;Test Result Id for LNT performance monitor;VcFiObdLntNox;3B;g (0-6,5335);; -VcNoxSensMgr;Vc06NOxSensUsMountingError;Test Result Id for Mounting error (not in exhaust flow);VcFiNOxSensUsMountingDiag;2E;True/false;;Remove this for GenIII? -VcNoxSensMgr;Vc06NOxSensUsAvailabilityError;Test Result Id for NOx signal status invalid too much;VcFiNOxSensUsAvailabilityDiag;20; Ratio (0-1) ;;Remove this for GenIII? -VcNoxSensMgr;Vc06NOxSensUsReadinessError;Test Result Id for Sensor readiness not reached in time;VcFiNOxSensUsReadinessDiag;91; S (0-900) ;;Remove this for GenIII? -VcNoxSensMgr;Vc06NOxSensUsCurveDiagAError;Test Result Id for Nox signal slope error ;VcFiNOxSensUsCurveDiagA;2F; %  (0-255%) ;;Remove this for GenIII? -VcNoxSensMgr;Vc06NOxSensDsMountingError;Test Result Id for Mounting error (not in exhaust flow);VcFiNOxSensDsMountingDiag;2E;True/false;;Remove this for GenIII? -VcNoxSensMgr;Vc06NOxSensDsAvailabilityError;Test Result Id for NOx signal status invalid too much;VcFiNOxSensDsAvailabilityDiag;20; Ratio (0-1);;Remove this for GenIII? -VcNoxSensMgr;Vc06NOxSensDsReadinessError;Test Result Id for Sensor readiness not reached in time;VcFiNOxSensDsReadinessDiag;91;S (0-900) ;;Remove this for GenIII? -VcNoxSensMgr;Vc06NOxSensDsCurveDiagAError;Test Result Id for Nox signal slope error ;VcFiNOxSensDsCurveDiagA;2F; %  (0-255%) ;;Remove this for GenIII? -VcObdNoxSOfs;Vc06NOxSensUsOfsTst;Test Result Id for Upstream NOx sensor offset test;VcFiNOxSensOfs;40; Ppm (0-1650) ;; -VcObdNoxSOfs;Vc06NOxSensMidOfsTst;Test Result Id for Mid NOx sensor offset test;VcFiNOxSensOfs;40; Ppm (0-1650) ;; -VcObdNoxSOfs;Vc06NOxSensDsOfsTst;Test Result Id for Downstream NOx sensor offset test;VcFiNOxSensOfs;40; Ppm (0-1650) ;; -VcObdNoxSO2;Vc06NOxSensUsOxyToMdl;Test Result Id for Upstream NOx sensor O2 concentration sensor to model;VcFiNOxSensO2;30; % (0-100) ;; -VcObdNoxSO2;Vc06NOxSensMidOxyToMdl;Test Result Id for Mid NOx sensor O2 concentration sensor to model;VcFiNOxSensO2;30; % (0-100) ;; -VcObdNoxSO2;Vc06NOxSensDsOxyToMdl;Test Result Id for Downstream NOx sensor O2 concentration sensor to model;VcFiNOxSensO2;30; % (0-100) ;; -VcObdScr;Vc06ScrConvEff;Test Result Id for SCR Conversion efficiency too low;VcFiScrConvEff;20; Ratio (0-1) ;; -VcObdScr;Vc06Scr1ConvEff;Test Result Id for SCR1 Conversion efficiency too low;VcFiScr1ConvEff;20; Ratio (0-1) ;; -VcObdScr;Vc06Scr2ConvEff;Test Result Id for SCR2 Conversion efficiency too low;VcFiScr2ConvEff;20; Ratio (0-1) ;; -Unused;Vc06Unused;Unused monitors;VcFiUnused;;;; -VcPurgMon;Vc06PurgMonMp;Test result Id purge monitor manifold purge ;VcFiPurgMon;5;;; -VcPurgMon;Vc06PurgMonVp;Test result Id purge monitor over pressure purge;VcFiPurgMon;5;;; -VcLamCtrlM;Vc06LamCtrlMFirstSt;Test result Id lambda control closed loop monitor first start;VcFiLamCtrlM;12;;; -VcLamCtrlM;Vc06LamCtrlMReSt;Test result Id lambda control closed loop monitor restart;VcFiLamCtrlM;12;;; -VcObdGpf;Vc06ObdGpf;Test result Id for gasoline particle filter monitor;VcFiObdGpf;83;;; -VcLeakMon;Vc06LeakMon;Test result Id for leakage detection monitor;VcFiLeakMon;32;;; -VcNoxSensMgr;Vc06NOxSensUsHeater;Test result id for Us Heater capacity monitor;VcFiNOxSensUsHeaterDiag;91; s (0-900) ;;Remove this for GenIII? -VcNoxSensMgr;Vc06NOxSensDsHeater;Test result id for Ds Heater capacity monitor;VcFiNOxSensDsHeaterDiag;91; s (0-900) ;;Remove this for GenIII? -VcEmiPlsM;Vc06MidO2SnsrPlausLeanMon;Test result Id for middle oxygen sensor plausability monitor lean;VcFiMidO2SnsrPlausMon;0A;0A = 0.122mV/LSB;; -VcEmiPlsM;Vc06MidO2SnsrPlausRichMon;Test result Id for middle oxygen sensor plausability monitor rich;VcFiMidO2SnsrPlausMon;0A;;; -VcEmiPlsM;Vc06MidO2SnsrPlausAmplMon;Test result Id for middle oxygen sensor plausability monitor amplitude;VcFiMidO2SnsrPlausMon;0A;;; -VcLeakMon;Vc06LeakMonBlocked;Test result Id for leakage detection monitor blocked lines;VcFiLeakMon;12;;; -VcLeakMon;Vc06LeakMonRefPres;Test result Id for leakage detection monitor pressure sensor fault;VcFiLeakMon;17;;; -VcObdDpms;Vc06DpmsTPlaus;Test result Id Key on check of temperature meander;VcFiDpmsTPlaus;96;degC;; -VcObdDpms;Vc06DpmsProtTubePlaus;Test result Id Detection of clogged protection tube;VcFiDpmsProtTubePlaus;91;s;; -VcObdDpms;Vc06DpmsHtrPlaus;Test result Id Heater plausibility check;VcFiDpmsHtrPlaus;13;Ohm results are in the range of 0 to 20 Ohm;; -VcObdDpms;Vc06DpmsIDEPlaus;Test result Id IDE plausibility check;VcFiDpmsIDEPlaus;41;uA;; -VcObdDpms;Vc06DpmsShntCircPlaus;Test result Id IDE shunt circuit plausibility check;VcFiDpmsShntCircPlaus;41;uA;; -VcObdDpms;Vc06PMSnsrGainFault;Test result Id for PM sensor gain fault;VcFiPMSnsrGainFault;3;;; -VcObdDpms;Vc06PMSnsrRegenTOut;Test result Id for PM sensor regeneration time out;VcFiPMSnsrRegenTOut;2F;% (perc failed regen attemps) RegenTOut should be linked to Heater MID;; -VcObdDpms;Vc06PMSnsrOutOfExh;Test result Id for PM sensor removed/out of exhaust;VcFiPMSnsrOutOfExh;96;degC;; -VcObdDpms;Vc06PMSnsrCloggedTip;Test result Id for PM Sensor clogged tip;VcFiPMSnsrCloggedTip;16;degC;; -VcLamCilM;Vc06CilMSfb;Test result Id for Cylinder Imbalance Monitor Sub-Feedback;VcFiCilM;5;;; -VcLamCilM;Vc06CilMLam;Test result Id for Cylinder Imbalance Monitor Lambda Oscillation;VcFiCilM;6;;; -VcLamCilM;Vc06CilMEngSpd;Test result Id for Cylinder Imbalance Monitor Engine Speed Oscillation;VcFiCilM;3;;; -VcCdPinM;Vc06CdPinMHiAct1;Test result Id for Sliding Camshaft Monitor Actuator Pin 1, High Side;VcFiCdPinM;1D;;; -VcCdPinM;Vc06CdPinMHiAct2;Test result Id for Sliding Camshaft Monitor Actuator Pin 2, High Side;VcFiCdPinM;1D;;; -VcCdPinM;Vc06CdPinMHiAct3;Test result Id for Sliding Camshaft Monitor Actuator Pin 3, High Side;VcFiCdPinM;1D;;; -VcCdPinM;Vc06CdPinMHiAct4;Test result Id for Sliding Camshaft Monitor Actuator Pin 4, High Side;VcFiCdPinM;1D;;; -VcCdPinM;Vc06CdPinMHiAct5;Test result Id for Sliding Camshaft Monitor Actuator Pin 5, High Side;VcFiCdPinM;1D;;; -VcCdPinM;Vc06CdPinMHiAct6;Test result Id for Sliding Camshaft Monitor Actuator Pin 6, High Side;VcFiCdPinM;1D;;; -VcCdPinM;Vc06CdPinMHiAct7;Test result Id for Sliding Camshaft Monitor Actuator Pin 7, High Side;VcFiCdPinM;1D;;; -VcCdPinM;Vc06CdPinMHiAct8;Test result Id for Sliding Camshaft Monitor Actuator Pin 8, High Side;VcFiCdPinM;1D;;; -VcCdPinM;Vc06CdPinMLoAct1;Test result Id for Sliding Camshaft Monitor Actuator Pin 1, Low Side;VcFiCdPinM;1D;;; -VcCdPinM;Vc06CdPinMLoAct2;Test result Id for Sliding Camshaft Monitor Actuator Pin 2, Low Side;VcFiCdPinM;1D;;; -VcCdPinM;Vc06CdPinMLoAct3;Test result Id for Sliding Camshaft Monitor Actuator Pin 3, Low Side;VcFiCdPinM;1D;;; -VcCdPinM;Vc06CdPinMLoAct4;Test result Id for Sliding Camshaft Monitor Actuator Pin 4, Low Side;VcFiCdPinM;1D;;; -VcCdPinM;Vc06CdPinMLoAct5;Test result Id for Sliding Camshaft Monitor Actuator Pin 5, Low Side;VcFiCdPinM;1D;;; -VcCdPinM;Vc06CdPinMLoAct6;Test result Id for Sliding Camshaft Monitor Actuator Pin 6, Low Side;VcFiCdPinM;1D;;; -VcCdPinM;Vc06CdPinMLoAct7;Test result Id for Sliding Camshaft Monitor Actuator Pin 7, Low Side;VcFiCdPinM;1D;;; -VcCdPinM;Vc06CdPinMLoAct8;Test result Id for Sliding Camshaft Monitor Actuator Pin 8, Low Side;VcFiCdPinM;1D;;; -VcEmiPlsM;Vc06AftO2SnsrPlausLeanMon;Test result Id for after oxygen sensor plausability monitor lean;VcFiAftO2SnsrPlausMon;0A;0A = 0.122mV/LSB;; -VcEmiPlsM;Vc06AftO2SnsrPlausRichMon;Test result Id for after oxygen sensor plausability monitor rich;VcFiAftO2SnsrPlausMon;0A;;; -VcEmiPlsM;Vc06AftO2SnsrPlausAmplMon;Test result Id for after oxygen sensor plausability monitor amplitude;VcFiAftO2SnsrPlausMon;0A;;; -VcNoxSensMgr;Vc06NOxSensMidMountingError;Test Result Id for Mounting error (not in exhaMidt flow);VcFiNOxSensMidMountingDiag;2E;True/false;;Remove this for GenIII? -VcNoxSensMgr;Vc06NOxSensMidAvailabilityError;Test Result Id for NOx signal statMid invalid too much;VcFiNOxSensMidAvailabilityDiag;20; Ratio (0-1) ;;Remove this for GenIII? -VcNoxSensMgr;Vc06NOxSensMidReadinessError;Test Result Id for Sensor readiness not reached in time;VcFiNOxSensMidReadinessDiag;91; S (0-900) ;;Remove this for GenIII? -VcNoxSensMgr;Vc06NOxSensMidCurveDiagAError;Test Result Id for Nox signal slope error ;VcFiNOxSensMidCurveDiagA;2F; %  (0-255%) ;;Remove this for GenIII? -VcNoxSensMgr;Vc06NOxSensMidHeater;Test result id for Mid Heater capacity monitor;VcFiNOxSensMidHeaterDiag;91; s (0-900) ;;Remove this for GenIII? -VcObdNoxStartUp;Vc06NOxSnsrUsHtr;Test result id for Us Heater capacity monitor;VcFiNOxSnsrUsHtr;91; S (0-900) ;; -VcObdNoxStartUp;Vc06NOxSnsrMidHtr;Test result id for Mid Heater capacity monitor;VcFiNOxSnsrMidHtr;91; S (0-900) ;; -VcObdNoxStartUp;Vc06NOxSnsrDsHtr;Test result id for Ds Heater capacity monitor;VcFiNOxSnsrDsHtr;91; S (0-900) ;; -VcObdNoxStartUp;Vc06NOxSnsrUsReady;Test Result Id for Us Sensor readiness not reached in time;VcFiNOxSnsrUsReady;91; S (0-900) ;; -VcObdNoxStartUp;Vc06NOxSnsrMidReady;Test Result Id for Mid Sensor readiness not reached in time;VcFiNOxSnsrMidReady;91; S (0-900) ;; -VcObdNoxStartUp;Vc06NOxSnsrDsReady;Test Result Id for Ds Sensor readiness not reached in time;VcFiNOxSnsrDsReady;91; S (0-900) ;; -VcLamRespM;Vc06SymRespM;Test result ID for Front Oxygen Sensor Symmetric Slow Response;VcFiRespM;90;;; -VcLamRespM;Vc06LRRespM;Test result ID for Front Oxygen Sensor Lean to Rich Slow Response;VcFiRespM;90;;; -VcLamRespM;Vc06RLRespM;Test result ID for Front Oxygen Sensor Rich to Lean Slow Response;VcFiRespM;90;;; diff --git a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_Ranking.csv b/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_Ranking.csv deleted file mode 100644 index 88e5667..0000000 --- a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/CoreIdNameDefinition_Ranking.csv +++ /dev/null @@ -1,511 +0,0 @@ -;;;;;PROJECTS; -Model name;Event Name;Description;Fid;Comments;ClimCtr;Old Id -VcAesObd;VcRvAmbPCompPlausMon;Ranking Id for Ambient Pressure Rationality Monitor;VcFiAmbPCompPlausMon;;;ATPR -VcAesObd;VcRvCacPAmbPPlausMon;Ranking Id for CAC pressure vs Ambient pressure test;VcFiCacPAmbPPlausMon;;;CACPAMBP -VcAesObd;VcRvCacPIntkPPlausMon;Ranking Id for Exhaust Manifold Pressure Rationality Monitor (sensor vs model);VcFiCacPIntkPPlausMon;;;CACPINTK -VcAesObd;VcRvCacPCompPlausMon;Ranking Id for CAC Pressure Rationality Monitor;VcFiCacPCompPlausMon;;;CACPR -VcAesObd;VcRvExhMnfldPCompPlausMon;Ranking Id for Exhaust Manifold Pressure Rationality Monitor;VcFiExhMnfldPCompPlausMon;;;EXHMPDR -VcAesObd;VcRvIntkMnfldFlwPlausEHMon;Ranking Id for Intake Manifold Rationality Monitor With EGR High Boost;VcFiIntkMnfldFlwMdlPlausMon;;;MAFR_EH -VcAesObd;VcRvIntkMnfldFlwPlausELMon;Ranking Id for Intake Manifold Rationality Monitor With EGR Low Boost;VcFiIntkMnfldFlwMdlPlausMon;;;MAFR_EL -VcAesObd;VcRvIntkMnfldFlwPlausNHMon;Ranking Id for Intake Manifold Rationality Monitor With No EGR High Boost;VcFiIntkMnfldFlwMdlPlausMon;;;MAFR_NH -VcAesObd;VcRvIntkMnfldFlwPlausNLMon;Ranking Id for Intake Manifold Rationality Monitor With No EGR Low Boost;VcFiIntkMnfldFlwMdlPlausMon;;;MAFR_NL -VcAesObd;VcRvIntkMnfldPCompPlausMon;Ranking Id for Intake Manifold Pressure Rationality Monitor;VcFiIntkMnfldPCompPlausMon;;;MAPIMPDR -VcAesObd;VcRvIntkMnfldPMdlPlausMon;Ranking Id for Intake Manifold Rationality Monitor;VcFiIntkMnfldPMdlPlausMon;;;MAPR -VcAesObd;VcRvPCVLeakMon;Ranking Id for PCV Leakage Monitor;VcFiPCVLeakMon;;; -VcAesMapM;VcRvIntkMnfldPMdlPlausMon;Ranking Id for Intake Manifold Rationality Monitor;VcFiIntkMnfldPMdlPlausMon;;;MAPR -VcAesObd;VcRvScPAmbPPlausMon;Ranking Id for Supercharger pressure vs Ambient pressure test;VcFiScPAmbPPlausMon;;;SCPAMBP -VcAesObd;VcRvScPCompPlausMon;Ranking Id for Supercharger Pressure Rationality Monitor;VcFiScPCompPlausMon;;;SCPR -VcAesTrboM;VcRvBoostPeakMon;Ranking Id for Boost Peak Pressure Monitor;VcFiBoostPeakMon;;;BSTPEAK -VcAesTrboM;VcRvBoostHiPlausMon;Ranking Id for Boost Pressure High Rationality Monitor;VcFiBoostPPlausMon;;;BSTR_HI -VcAesTrboM;VcRvBoostLoPlausMon;Ranking Id for Boost Pressure Low Rationality Monitor;VcFiBoostPPlausMon;;;BSTR_LO -VcAesTrboMg3;VcRvBoostPeakMon;Ranking Id for Boost Peak Pressure Monitor;VcFiBoostPeakMon;;;BSTPEAK -VcAesTrboMg3;VcRvBoost2PeakMon;Ranking Id for Boost 2 Peak Pressure Monitor;VcFiBoost2PeakMon;;; -VcAesTrboMg3;VcRvBoost1HiPlausMon;Ranking Id for Boost Pressure 1 High Rationality Monitor;VcFiBoostPPlausMon;;; -VcAesTrboMg3;VcRvBoost1LoPlausMon;Ranking Id for Boost Pressure 1 Low Rationality Monitor;VcFiBoostPPlausMon;;; -VcDepTre;VcRvSymEvent;Ranking Id for ASIL B Torque Plausibility monitor;-;;;SYM_EVENT -VcDepTre;VcRvTrqPl1;Ranking Id for ASIL B Torque Plausibility monitor;-;;;TRQ_PL1 -VcOilPrMon;VcRvOilPOffsHiMon;Ranking Id for high offset test monitor;VcFiOilPrMonOffs;;;OFFSHI -VcOilPrMon;VcRvOilPOffsLoMon;Ranking Id for low offset test monitor;VcFiOilPrMonOffs;;;OFFSLO -VcOilPrMon;VcRvOilPLoPlausMon;Ranking Id for low oil pressure rationality monitor;VcFiOilPrMon;;;OILP_LO -VcOilPrMon;VcRvOilPNoPlausMon;Ranking Id for no oil pressure rationality monitor;VcFiOilPrMon;;;OILP_NO -VcOilPrMon;VcRvOilPmpStckHiMon;Ranking Id for oil pump solenoid stuck monitor - stuck at high pressure;VcFiOilPmpStckMon;;; -VcOilPrMon;VcRvOilPmpStckLoMon;Ranking Id for oil pump solenoid stuck monitor - stuck at low pressure;VcFiOilPmpStckMon;;; -VcEmiCatM;VcRvCatMon;Ranking Id for catalyst monitor;VcFiCatMon;;;VcRvEmiCatM -VcEmiOscM;VcRvCatalystO2StorageMon;Ranking Id for catalyst monitor;VcFiCatalystO2StorageMon;;;VcRvCatalystO2StorageMon -VcEmiOscM;VcRvSecO2SnsrDynMon;Ranking Id for catalyst monitor;VcFiCatalystO2StorageMon;;;VcRvSecO2SnsrDynMon -VcEmiOscM;VcRvCatalystO2StorageVariMon;Ranking Id for catalyst monitor;VcFiCatalystO2StorageMon;;;VcRvCatalystO2StorageVariMon -VcEmiOscM;VcRvSecO2SnsrDynAirflowVariMon;Ranking Id for catalyst monitor;VcFiCatalystO2StorageMon;;;VcRvSec02SnsrDynAirflowVariMon -VcEmiAdpM;VcRvSecO2AdpLeanMon;Ranking Id for secondary fuel trim monitor lean;VcFiSecO2AdpMon;;;VcRvEmiAdpMLean -VcEmiAdpM;VcRvSecO2AdpRichMon;Ranking Id for secondary fuel trim monitor rich;VcFiSecO2AdpMon;;;VcRvEmiAdpMRich -VcEmiPlsM;VcRvSecO2SnsrPlausLeanMon;Ranking Id for secondary oxygen sensor plausability monitor lean;VcFiSecO2SnsrPlausMon;;;VcRvEmiPlsMLean -VcEmiPlsM;VcRvSecO2SnsrPlausRichMon;Ranking Id for secondary oxygen sensor plausability monitor rich;VcFiSecO2SnsrPlausMon;;;VcRvEmiPlsMRich -VcEmiPlsM;VcRvSecO2SnsrPlausAmplMon;Ranking Id for secondary oxygen sensor plausability monitor amplitude;VcFiSecO2SnsrPlausMon;;;VcRvEmiPlsMAmpl -VcLamDynCcM;VcRvPrimO2SnsrSlowRespRLMon;Ranking ID for front lambda sensor slow response RL;VcFiPrimO2SnsrSlowRespMon;;;VcRvSlowRespRL -VcLamDynCcM;VcRvPrimO2SnsrSlowRespLRMon;Ranking ID for front lambda sensor slow response LR;VcFiPrimO2SnsrSlowRespMon;;;VcRvSlowRespLR -VcLamAdpM;VcRvLamAdpLeanMon;Ranking ID for Fueltrim lean;VcFiLamAdpMon;;;VcRvLamDynM -VcLamAdpM;VcRvLamAdpRichMon;Ranking ID for Fueltrim rich;VcFiLamAdpMon;;;VcRvLamDynM -VcTempKohlM;VcRvAmbTKohlHi;Ranking Id for offset monitor of the ambient air temperature sensor, offset high;VcFiAmbTKohlM;;;KOAMBTH -VcTempKohlM;VcRvAmbTKohlLo;Ranking Id for offset monitor of the ambient air temperature sensor, offset low;VcFiAmbTKohlM;;;KOAMBTL -VcTempKohlM;VcRvIntkAirTKohlHi;Ranking Id for offset monitor of the intake air temperature sensor, offset high;VcFiIntkAirTKohlM;;;KOIATH -VcTempKohlM;VcRvIntkAirTKohlLo;Ranking Id for offset monitor of the intake air temperature sensor, offset low;VcFiIntkAirTKohlM;;;KOIATL -VcTempKohlM;VcRvBstTKohlHi;Ranking Id for offset monitor of the boost air temperature sensor, offset high;VcFiBstTKohlM;;;KOBATH -VcTempKohlM;VcRvBstTKohlLo;Ranking Id for offset monitor of the boost air temperature sensor, offset low;VcFiBstTKohlM;;;KOBATL -VcTempKohlM;VcRvClntTKohlHi;Ranking Id for offset monitor of the engine coolant temperature sensor, offset high;VcFiClntTKohlM;;;KOECTH -VcTempKohlM;VcRvClntTKohlLo;Ranking Id for offset monitor of the engine coolant temperature sensor, offset low;VcFiClntTKohlM;;;KOECTL -VcTempKohlM;VcRvOilTKohlHi;Ranking Id for offset monitor of the oil temperature sensor, offset high;VcFiOilTKohlM;;;KOOILTH -VcTempKohlM;VcRvOilTKohlLo;Ranking Id for offset monitor of the oil temperature sensor, offset low;VcFiOilTKohlM;;;KOOILTL -VcTempKohlM;VcRvInManiTKohlHi;Ranking Id for offset monitor of the intake manifold air temperature sensor, offset high;VcFiInManiTKohlM;;;KOMATH -VcTempKohlM;VcRvInManiTKohlLo;Ranking Id for offset monitor of the intake manifold air temperature sensor, offset low;VcFiInManiTKohlM;;;KOMATL -VcTempKohlM;VcRvCisgTKohlHi;Ranking Id for offset monitor of the Crank ISG temperature sensor, offset high;VcFiCisgTKohlM;;;KOCISGTH -VcTempKohlM;VcRvCisgTKohlLo;Ranking Id for offset monitor of the Crank ISG temperature sensor, offset low;VcFiCisgTKohlM;;;KOCISGTL -VcTempKohlM;VcRvBstT2KohlHi;Ranking Id for offset monitor of the boost air temperature sensor 2, offset high;VcFiBstT2KohlM;;; -VcTempKohlM;VcRvBstT2KohlLo;Ranking Id for offset monitor of the boost air temperature sensor 2, offset low;VcFiBstT2KohlM;;; -VcTempKohlM;VcRvLtClntWcacTKohlHi;Ranking Id for offset monitor of the coolant temp sensor in LT wcac circuit, offset high;VcFiLtClntWcacTKohlM;;; -VcTempKohlM;VcRvLtClntWcacTKohlLo;Ranking Id for offset monitor of the coolant temp sensor in LT wcac circuit, offset low;VcFiLtClntWcacTKohlM;;; -VcTempKohlM;VcRvPowerPulseTKohlHi;Ranking Id for offset monitor of the Power pulse temperature sensor, offset high;VcFiPowerPulseTKohlM;;; -VcTempKohlM;VcRvPowerPulseTKohlLo;Ranking Id for offset monitor of the Power pulse temperature sensor, offset low;VcFiPowerPulseTKohlM;;; -VcTempKohlM;VcRvEChargerTKohlHi;Ranking Id for offset monitor of the ECharger temperature sensor, offset high;VcFiEChargerTKohlM;;; -VcTempKohlM;VcRvEChargerTKohlLo;Ranking Id for offset monitor of theECharger temperature sensor, offset low;VcFiEChargerTKohlM;;; -VcTempKohlM;VcRvWcacUsAirTKohlHi;Ranking Id for offset monitor of the WCAC upstream air temperature sensor, offset high;VcFiWcacUsAirTKohlM;;; -VcTempKohlM;VcRvWcacUsAirTKohlLo;Ranking Id for offset monitor of the WCAC upstream air temperature sensor, offset low;VcFiWcacUsAirTKohlM;;; -VcTempKohlM;VcRvLPFuelTKohlHi;Ranking Id for offset monitor of the LP fuel temperature sensor, offset high;VcFiLPFuelTKohlM;;; -VcTempKohlM;VcRvLPFuelTKohlLo;Ranking Id for offset monitor of the LP fuel temperature sensor, offset low;VcFiLPFuelTKohlM;;; -VcTempStkM;VcRvBstTStkM;Ranking Id for stuck in range monitor of the boost air temperature sensor;VcFiBstTStkM;;;BATD -VcTempStkM;VcRvClntTStkM;Ranking Id for stuck in range monitor of the engine coolant temperature sensor;VcFiClntTStkM;;;CLTD -VcTempStkM;VcRvIntkAirTStkM;Ranking Id for stuck in range monitor of the intake air temperature sensor;VcFiIntkAirTStkM;;;IATD -VcTempStkM;VcRvInManiTStkM;Ranking Id for stuck in range monitor of the intake manifold air temperature sensor;VcFiInManiTStkM;;;MATD -VcTempStkM;VcRvBstT2StkM;Ranking Id for stuck in range monitor of the boost air temperature sensor 2;VcFiBstT2StkM;;; -VcTempStkM;VcRvLtClntWcacTStkM;Ranking Id for stuck in range monitor of the coolant temp sensor in LT wcac circuit;VcFiLtClntWcacTStkM;;; -VcTempStkM;VcRvPowerPulseTStkM;Ranking Id for stuck in range monitor of the power pulse temperature sensor;VcFiPowerPulseTStkM;;;PPTD -VcTempStkM;VcRvEChrgrTStkM;Ranking Id for stuck in range monitor of the ECharger temperature sensor;VcFiEChrgrTStkM;;; -VcTempStkM;VcRvOilTStkM;Ranking Id for stuck in range monitor of the oil temperature sensor;VcFiOilTStkM;;; -VcTempStkM;VcRvWcacUsAirTStkM;Ranking Id for stuck in range monitor of the WCAC upstream air temperature sensor;VcFiWcacUsAirTStkM;;; -VcTempStkM;VcRvLPFuelTStkM;Ranking Id for stuck in range monitor of the LP fuel temperature sensor;VcFiLPFuelTStkM;;; -VcTempThM;VcRvThLk;Ranking Id for thermostat leakage fault;VcFiThM;;;THMS_LK -VcTempThM;VcRvThSlw;Ranking Id for thermostat slow heat up fault;VcFiThM;;;THMS_SLW -VcTempThContnsM;VcRvThContnsMon;Ranking Id for continuous thermostat fault;VcFiThContnsM;;; -VcAesObd;VcRvExhtMnfPMon;Ranking Id for Exhaust Manifold Pressure Rationality Monitor (sensor vs model);VcFiExhtMnfPMon;;;EXHPR -VcAesExhMnfPM;VcRvExhtMnfPMon;Ranking Id for Exhaust Manifold Pressure Rationality Monitor (sensor vs model);VcFiExhtMnfPMon;;;EXHPR -VcAesTrboM;VcRvBoostLPHiPlausMon;Ranking Id for LP Boost Pressure High Rationality Monitor;VcFiBoostPPlausMon;;;BSTLP_HI -VcAesTrboM;VcRvBoostHPHiPlausMon;Ranking Id for HP Boost Pressure High Rationality Monitor;VcFiBoostPPlausMon;;;BSTHP_HI -VcAesTrboM;VcRvBoostLPLoPlausMon;Ranking Id for LP Boost Pressure Low Rationality Monitor;VcFiBoostPPlausMon;;;BSTLP_LO -VcAesTrboM;VcRvBoostHPLoPlausMon;Ranking Id for HP Boost Pressure Low Rationality Monitor;VcFiBoostPPlausMon;;;BSTHP_LO -VcAesTrboMg3;VcRvBoost2HiPlausMon;Ranking Id for Boost Pressure 2 High Rationality Monitor;VcFiBoostPPlausMon;;; -VcAesTrboMg3;VcRvBoost2LoPlausMon;Ranking Id for Boost Pressure 2 Low Rationality Monitor;VcFiBoostPPlausMon;;; -VcAesTrboMg3;VcRvBoostPeakHPUsMon;Ranking Id for Boost Peak Pressure Monitor HP Upstream;VcFiBoostPeakHPUsMon;;; -VcAesTrboMg3;VcRvBoostHpCmprBypStkOpen;Ranking Id for HP Compressor Bypass stuck open;VcFiBoostHpCmprBypStkOpen;;; -VcAesEgrM;VcRvEgrHiFlw;Ranking Id for EGR Hi flow error;VcFiEgrSysMon;;; -VcAesEgrM;VcRvEgrLoFlw;Ranking Id for EGR Lo flow error;VcFiEgrSysMon;;; -VcAesEgrM;VcRvEgrLrHiFlw;Ranking Id for LR EGR Hi flow error;VcFiEgrSysMon;;; -VcAesEgrM;VcRvEgrLrLoFlw;Ranking Id for LR EGR Lo flow error;VcFiEgrSysMon;;; -VcAesEgrM;VcRvEgrSrHiFlw;Ranking Id for SR EGR Hi flow error;VcFiEgrSysMon;;; -VcAesEgrM;VcRvEgrSrLoFlw;Ranking Id for SR EGR Lo flow error;VcFiEgrSysMon;;; -VcAesEgrM;VcRvEgrAr;Ranking Id for EGR flow fault;VcFiEgrAr;;;EGRAR -VcAesEgrM;VcRvEgrClrMnr;Ranking Id for EGR cooler fault;VcFiEgrClrMnr;;;EGRCLRR -VcAesSupM;VcRvSupChrPMdlPlausHi;Ranking Id for supercharger pressure over target error;VcFiSupChrPMdlPlausHi;;; -VcAesSupM;VcRvSupChrPMdlPlausLo;Ranking Id for supercharger pressure under target error;VcFiSupChrPMdlPlausLo;;; -VcObdDpfDpms;VcRvDPFPerfDpms;Ranking Id for DPF soot filtration efficiency below threshold Soot Sensor ;VcFiDPFPerfDpms;;;DPFPERF -VcObdDpf;VcRvDPFPerfDP;Ranking Id for DPF soot filtration efficiency below threshold DP-sensor;VcFiDPFPerfDP;;;SPR2 -VcAcPMon;VcRvAcPSnsrStck;Ranking Id for AC pressure sensor stuck;VcFiAcPMon;;;ACPS_S -VcAcPMon;VcRvAcPLeak;Ranking Id for AC pressure leakage;VcFiAcPMon;;;ACPS_L -VcObdDpms;VcRvDpmsTPlaus;Ranking id for temperature plausibility;VcFiDpmsTPlaus;;;DpmsTPlaus -VcObdDpms;VcRvDpmsProtTubePlaus;Ranking id for protection tube plausibility;VcFiDpmsProtTubePlaus;;;DpmsProtTubePlaus -VcObdDpms;VcRvDpmsHtrPlaus;Ranking id for heater plausibility;VcFiDpmsHtrPlaus;;;DpmsHtrPlaus -VcObdDpms;VcRvDpmsIDEPlaus;Ranking id for inter digital electrodes plausibility;VcFiDpmsIDEPlaus;;;DpmsIDEPlaus -VcObdDpms;VcRvDpmsShntCircPlaus;Ranking id for shunt circuit plausibility;VcFiDpmsShntCircPlaus;;;DpmsShntCircPlaus -VcObdDpms;VcRvDpmsBattDiff1;Ranking id for battery diff 1;VcFiDpmsBattDiff1;;;DpmsBattDiff1 -VcObdDpms;VcRvDpmsBattDiff2;Ranking id for battery diff 2;VcFiDpmsBattDiff2;;;DpmsBattDiff2 -VcObdDpms;VcRvDpmsBattElec;Ranking id for battery electrical;VcFiDpmsBattElec;;;DpmsBattElec -VcObdDpms;VcRvDpmsCanTO;Ranking id for CAN timeout;VcFiDpmsCanTO;;;DpmsCanTO -VcObdDpms;VcRvDpmsHtrOffElec;Ranking id for Heater off electrical diag;VcFiDpmsHtrOffElec;;;DpmsHtrOffElec -VcObdDpms;VcRvDpmsTElec;Ranking id for temperature meander electical diag;VcFiDpmsTElec;;;DpmsTElec -VcObdDpms;VcRvDpmsIDENegElec;Ranking id for IDE negative electrical diag;VcFiDpmsIDENegElec;;;DpmsIDENegElec -VcObdDpms;VcRvDpmsHtrOnElec;Ranking id for heater always on electrical diag;VcFiDpmsHtrOnElec;;;DpmsHtrOnElec -VcObdDpms;VcRvDpmsIDEPosElec;Ranking id for IDE positive electrical diag;VcFiDpmsIDEPosElec;;;DpmsIDEPosElec -VcObdDpms;VcRvPMSnsrCanComFail;Ranking id for PM sensor CAN communication failure;VcFiPMSnsrCanComFail;;; -VcObdDpms;VcRvPMSnsrCtrlModPerf;Ranking id for PM sensor control module performance;VcFiPMSnsrCtrlModPerf;;; -VcObdDpms;VcRvPMSnsrSuppVoltHi;Ranking id for PM sensor control module supply voltage low;VcFiPMSnsrSuppVoltHi;;; -VcObdDpms;VcRvPMSnsrSuppVoltLo;Ranking id for PM sensor control module supply voltage high;VcFiPMSnsrSuppVoltLo;;; -VcObdDpms;VcRvPMSnsrGainFault;Ranking id for PM sensor gain fault;VcFiPMSnsrGainFault;;; -VcObdDpms;VcRvPMSnsrHeatrCurHi;Ranking id for PM sensor heater current too high;VcFiPMSnsrHeatrCurHi;;; -VcObdDpms;VcRvPMSnsrHeatrCurLo;Ranking id for PM sensor heater current too low;VcFiPMSnsrHeatrCurLo;;; -VcObdDpms;VcRvPMSnsrHeatrTempHi;Ranking id for PM sensor heater temperature too high;VcFiPMSnsrHeatrTempHi;;; -VcObdDpms;VcRvPMSnsrInternSC;Ranking id for PM sensor internal short circuit fault;VcFiPMSnsrInternSC;;; -VcObdDpms;VcRvPMSnsrOC;Ranking id for PM sensor open circuit fault;VcFiPMSnsrOC;;; -VcObdDpms;VcRvPMSnsrRegenTOut;Ranking id for PM sensor regeneration time out;VcFiPMSnsrRegenTOut;;; -VcObdDpms;VcRvPMSnsrSCBatt;Ranking id for PM sensor short circuit to battery fault;VcFiPMSnsrSCBatt;;; -VcObdDpms;VcRvPMSnsrSCGnd;Ranking id for PM sensor short circuit to ground fault;VcFiPMSnsrSCGnd;;; -VcObdDpms;VcRvPMSnsrVBoostLo;Ranking id for PM sensor boost voltage too low;VcFiPMSnsrVBoostLo;;; -VcObdDpms;VcRvPMSnsrOutOfExh;Ranking id for PM Sensor, Tampering diagnosis for removed/out of exhaust;VcFiPMSnsrOutOfExh;;; -VcObdDpms;VcRvPMSnsrCloggedTip;Ranking id for PM Sensor,Tampering diagnosis clogged tip;VcFiPMSnsrCloggedTip;;; -VcNoxSensMgr;VcRvNOxSensUsHeater;Ranking id for upstream sensor heater performance error;VcFiNOxSensUsHeaterDiag;;; -VcNoxSensMgr;VcRvNOxSensUsAvailability;Ranking id for upstream sensor availability error;VcFiNOxSensUsAvailabilityDiag;;; -VcNoxSensMgr;VcRvNOxSensUsReadiness;Ranking id for upstream sensor readiness error;VcFiNOxSensUsReadinessDiag;;; -VcNoxSensMgr;VcRvNOxSensUsCurveAHi;Ranking id for upstream sensor curve diagnosis condition A;VcFiNOxSensUsCurveDiagA;;; -VcNoxSensMgr;VcRvNOxSensDsHeater;Ranking id for downstream sensor heater performance error;VcFiNOxSensDsHeaterDiag;;; -VcNoxSensMgr;VcRvNOxSensDsAvailability;Ranking id for downstream sensor availability error;VcFiNOxSensDsAvailabilityDiag;;; -VcNoxSensMgr;VcRvNOxSensDsReadiness;Ranking id for downstream sensor readiness error;VcFiNOxSensDsReadinessDiag;;; -VcNoxSensMgr;VcRvNOxSensDsCurveAHi;Ranking id for downstream sensor curve diagnosis condition A;VcFiNOxSensDsCurveDiagA;;; -;VcRvClPedPosPlausMon;Ranking Id for linear clutch position sensor stuck in range;-;;;CLPED_PL -;VcRvClPedSwPlausMon;Ranking Id for clutch position switch stuck pressed;-;;;CLPED_S1 -;VcRvClPedSwMonPerf;Ranking Id for low performance of clutch position switch stuck monitor;-;;;CLPED_S2 -;VcRvClPedPosMonPerf;Ranking Id for low performance of linear clutch position sensor stuck monitor;-;;; -;VcRvGNS1PlausMon;Ranking Id for GNS1/2 plausibility monitor;-;;;NSENS_PM -;VcRvGNSStckMon;Ranking Id for GNS stuck in range monitor;-;;;NSENS_AM -;VcRvGNSMonPerf;Ranking Id for low performance of GNS monitor;-;;;NSENS_DF -;VcRvAccPedPlausMonL1;;-;;x; -;VcRvAccPedPlausMonL2;;-;;x; -;VcRvISDSpeedLimMon;;-;;x; -;VcRvTrqCrshMonL1;;-;;; -;VcRvTrqFrntAxleMonL1;;-;;x; -;VcRvTrqRearAxleMonL1;;-;;x; -;VcRvTrqStabMon;;-;;x; -;VcRvTrqRearAxleMonL2;;-;;x; -;VcRvTrqFrntAxleBrkMonL1;;-;;x; -;VcRvTrqRearAxleBrkMonL1;;-;;x; -;VcRvTrqFrntAxleBrkMonL2;;-;;x; -;VcRvTrqRearAxleBrkMonL2;;-;;x; -;VcRvTrqEstPlaus;;-;;; -;VcRvStrtMon;;-;;x; -VcDepTre;VcRvEradSpeedLim;Event Id for ASIL B ISD and ERAD reconfiguration monitor;-;;; -VcDepTre;VcRvSymRed;Event Id for ASIL B Torque Plausibility monitor;-;;;SYM_EVENT -VcDepTre;VcRvTrqEradBrk;Event Id for regenerative ERAD torque;-;;;TRQ_ERADBRK -VcDepTre;VcRvTrqEradPrp;Event Id for propulsive ERAD torque;-;;;TRQ_ERADPRP -VcDepTre;VcRvTrqIsgBrk;Event Id for regenerative ISG torque;-;;;TRQ_ISGBRK -VcDepTre;VcRvTrqIsgPrp;Event Id for propulsive Isg torque;-;;;TRQ_ISGPRP -VcDepTre;VcRvTrqPl3;Event Id for vehicle speed limitation (ASIL B ISD and ERAD) monitor;-;;;TRQ_PL3 -VcDepTre;VcRvTrqFrntAxleMonL2;Ranking Id for Front Axle Torque (ASIL B) Monitor ;-;;x; -VcDepTre;VcRvTrqCrshMonL2;Ranking Id for Crankshaft Torque (ASIL B) Monitor ;-;;; -VcDepTre;VcRvTrqDebounceL2;Ranking Id for Debounce Torque (ASIL B) Monitor ;-;;x; -VcTrsmShfShkMon;VcRvTrsmShfShkVDVacc;Transmission Shock Acc rankingvalue ;VcFiShfShkOn;;; -VcTrsmShfShkMon;VcRvTrsmShfShkVDVdis;Transmission Shock Disturbance rankingvalue;VcFiShfShkOn;;; -VcTrsmShfShkMon;VcRvTrsmShfShkVDVerr;Transmission Shock Error rankingvalue ;VcFiShfShkOn;;; -VcTrsmNeuShkMon;VcRvTrsmNeuShkVDVacc;Transmission Neutral Shock Acc rankingvalue ;VcFiTrsmNeuShkOn;;; -VcTrsmNeuShkMon;VcRvTrsmNeuShkVDVdis;Transmission Neutral Shock Disturbance rankingvalue;VcFiTrsmNeuShkOn;;; -VcTrsmNeuShkMon;VcRvTrsmNeuShkVDVerr;Transmission Neutral Shock Error rankingvalue;VcFiTrsmNeuShkOn;;; -VcTrsmTkOffMon;VcRvTrsmTkOffVDVacc;Transmission TakeOff Shock Acc rankingvalue;VcFiTrsmTkOffOn;;; -VcTrsmTkOffMon;VcRvTrsmTkOffVDVdis;Transmission TakeOff Shock Disturbance rankingvalue;VcFiTrsmTkOffOn;;; -VcTrsmTkOffMon;VcRvTrsmTkOffVDVerr;Transmission TakeOff Shock Error rankingvalue;VcFiTrsmTkOffOn;;; -VcTrsmHeatMon;VcRvTrsmHeatMonClu;transmission HeatMon clutch rankingvalue;VcFiTrsmHeatMon;;; -VcTrsmHeatMon;VcRvTrsmHeatMonShf;transmission HeatMon Transmission Shock Error rankingvalue;VcFiTrsmHeatMon;;; -VcObdScr;VcRvScrConvEff;SCR Conversion efficiency;VcFiScrConvEff;;; -VcObdScr;VcRvScr1ConvEff;SCR1 Conversion efficiency;VcFiScr1ConvEff;;; -VcObdScr;VcRvScr2ConvEff;SCR2 Conversion efficiency;VcFiScr2ConvEff;;; -VcTmEdMon;VcRvEdWtrPmpTStuck;Ranking Id for ED circuit water pump temp sensor stuck monitor;VcFiEdTStuckMon;;; -VcTmEdMon;VcRvEdLtClntTStuck;Ranking Id for ED circuit coolant temp sensor stuck monitor;VcFiEdTStuckMon;;; -VcTmEdMon;VcRvEdCiddClntTStuck;Ranking Id for ED circuit Cidd coolant temp sensor stuck monitor;VcFiEdTStuckMon;;; -VcTmEdMon;VcRvEdDcDcTStuck;Ranking Id for ED circuit DcDc temp sensor stuck monitor;VcFiEdTStuckMon;;; -VcTmEdMon;VcRvEdHvgWndgTStuck;Ranking Id for ED circuit Hvg winding temp sensor stuck monitor;VcFiEdTStuckMon;;; -VcTmEdMon;VcRvEdHvgInvTStuck;Ranking Id for ED circuit Hvg inverter temp sensor stuck monitor;VcFiEdTStuckMon;;; -VcTmEdMon;VcRvEdEradWndgTStuck;Ranking Id for ED circuit Erad winding temp sensor stuck monitor;VcFiEdTStuckMon;;; -VcTmEdMon;VcRvEdEradInvTStuck;Ranking Id for ED circuit Erad inverter temp sensor stuck monitor;VcFiEdTStuckMon;;; -VcTmEdMon;VcRvEdWtrPmpTOffsHi;Ranking Id for ED circuit water pump temp sensor offset high;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdWtrPmpTOffsLo;Ranking Id for ED circuit water pump temp sensor offset low;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdLtClntTOffsHi;Ranking Id for ED circuit coolant temp sensor offset high;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdLtClntTOffsLo;Ranking Id for ED circuit coolant temp sensor offset low;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdCiddClntTOffsHi;Ranking Id for ED circuit Cidd coolant temp sensor offset high;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdCiddClntTOffsLo;Ranking Id for ED circuit Cidd coolant temp sensor offset low;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdDcDcTOffsHi;Ranking Id for ED circuit DcDc temp sensor offset high;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdDcDcTOffsLo;Ranking Id for ED circuit DcDc temp sensor offset low;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdHvgWndgTOffsHi;Ranking Id for ED circuit Hvg winding temp sensor offset high;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdHvgWndgTOffsLo;Ranking Id for ED circuit Hvg winding temp sensor offset low;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdHvgInvTOffsHi;Ranking Id for ED circuit Hvg interver temp sensor offset high;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdHvgInvTOffsLo;Ranking Id for ED circuit Hvg inverter temp sensor offset low;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdEradWndgTOffsHi;Ranking Id for ED circuit Erad winding temp sensor offset high;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdEradWndgTOffsLo;Ranking Id for ED circuit Erad winding temp sensor offset low;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdEradInvTOffsHi;Ranking Id for ED circuit Erad inverter temp sensor offset high;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdEradInvTOffsLo;Ranking Id for ED circuit Erad inverter temp sensor offset low;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdCoolgPfmncLo;Ranking Id for ED circuit system cooling performance error;VcFiEdCoolgPfmncMon;;; -VcTmEdMon;VcRvEdElecMotTOffsHi;Ranking Id for ED circuit Electric Motor temp sensor offset high;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdElecMotTOffsLo;Ranking Id for ED circuit Electric Motor temp sensor offset low;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdElecMotTStuck;Ranking Id for ED circuit Electric Motor temp sensor stuck;VcFiEdTStuckMon;;; -VcTmEdMon;VcRvEdLtClntPreRadTOffsHi;Ranking Id for ED circuit coolant temp sensor (before radiator) offset high;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdLtClntPreRadTOffsLo;Ranking Id for ED circuit coolant temp sensor (before radiator) offset low;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdLtClntPreRadTStuck;Ranking Id for ED circuit coolant temp (before radiator) sensor stuck monitor;VcFiEdTStuckMon;;; -VcObdLnt;VcRvObdLnt;Ranking Id for LNT performance monitor;VcFiObdLnt;;;NTMA -VcObdLntNox;VcRvObdLntNOx;Ranking Id for LNT performance monitor;VcFiObdLntNox;;; -VcNoxSensMgr;VcRvNOxSensUsCurveALo;Ranking id for upstream sensor curve diagnosis condition A low;VcFiNOxSensUsCurveDiagA;;; -VcNoxSensMgr;VcRvNOxSensDsCurveALo;Ranking id for downstream sensor curve diagnosis condition A low;VcFiNOxSensDsCurveDiagA;;; -VcMtThMon;VcRvMtWtrPmpTOffsLo;Ranking Id for ED circuit water pump temp sensor offset low;VcFiMtWtrPmpTOffs;;;EdcpKoTLow -VcMtThMon;VcRvMtLtClntTOffsHi;Ranking Id for ED circuit coolant temp sensor offset high;VcFiMtTOffs;;;MTCSKoHi -VcMtThMon;VcRvMtLtClntTOffsLo;Ranking Id for ED circuit coolant temp sensor offset low;VcFiMtTOffs;;;MTCSKoLow -VcMtThMon;VcRvMtCiddClntTOffsHi;Ranking Id for ED circuit Cidd coolant temp sensor offset high;VcFiMtCiddClntTOffs;;;CcidKoHi -VcMtThMon;VcRvMtCiddClntTOffsLo;Ranking Id for ED circuit Cidd coolant temp sensor offset low;VcFiMtCiddClntTOffs;;;CcidKoLow -VcMtThMon;VcRvMtEradInvTOffsHi;Ranking Id for ED circuit Erad inverter temp sensor offset high;;;;EradKoHi -VcMtThMon;VcRvMtEradInvTOffsLo;Ranking Id for ED circuit Erad inverter temp sensor offset low;;;;EradKoLow -VcMtThMon;VcRvMtWtrPmpTStuck;Ranking Id for ED circuit water pump temp sensor stuck (EDCP);VcFiMtWtrPmpTStuck;;;EdcpTStuck -VcMtThMon;VcRvMtLtClntTStuck;Ranking Id for ED circuit coolant temp sensor stuck;VcFiMtLtClntTStuck;;;MTCSStuck -VcMtThMon;VcRvMtCiddClntTStuck;Ranking Id for ED circuit Cidd coolant temp sensor stuck;VcFiMtCiddClntTStuck;;;CcidTStuck -VcMtThMon;VcRvMtHvgWndgTStuck;Ranking Id for ED circuit Hvg winding temp sensor stuck;VcFiMtHvgWndgTStuck;;;STCISGT -VcMtThMon;VcRvMtEradInvTStuck;Ranking Id for ED circuit Erad inverter temp sensor stuck;VcFiMtEradInvTStuck;;;EradTStuck -VcMtThMon;VcRvHvBattTOutStuck;Ranking Id for HvBattery Coolant Outlet Temp sensor stuck;VcFiHvBattTOut;;;HvBattTStuck -VcMtThMon;VcRvHvBattTOutOffsHi;Ranking Id for HvBattery Coolant Outlet Temp sensor offset high;VcFiHvBattTOffs;;;HvBattTKoHi -VcMtThMon;VcRvHvBattTOutOffsLo;Ranking Id for HvBattery Coolant Outlet Temp sensor offset low;VcFiHvBattTOffs;;;HvBattTKoLow -VcMtThMon;VcRvMtThStuckClsd;Ranking Id for ED cicruit thermostat stuck closed;VcFiMtThStuck;;;MTTHMS_CL -VcMtThMon;VcRvMtThStuckOpen;Ranking Id for ED cicruit thermostat stuck open;VcFiMtThStuck;;;MTTHMS_OP -VcMtThMon;VcRvHvBattActCoolgPerfLo;Ranking Id for reduced cooling performance for High voltage battery, AC assisted chiller cooling;VcFiHvBattCool;;;HvBattCool_1 -VcMtThMon;VcRvHvBattActCoolgPerfLoMIL;Ranking Id for reduced cooling performance for High voltage battery, AC assisted chiller cooling;VcFiHvBattCool;;;HvBattCool_2 -VcMtThMon;VcRvHvBattPasCoolgPerfLoMIL;Ranking Id for reduced cooling performance for High voltage battery, radiator cooling;VcFiHvBattCool;;;HvBattCool_3 -VcMtThMon;VcRvHvBattPasCoolgPerfLo;Ranking Id for reduced cooling performance for High voltage battery, radiator cooling;VcFiHvBattCool;;;HvBattCool_4 -VcObdExhTemp;VcRvExhTempCatHi;Ranking id for T1 temperature sensor high fault;VcFiExhTempCat;;; -VcObdExhTemp;VcRvExhTempCatLo;Ranking id for T1 temperature sensor low fault;VcFiExhTempCat;;; -VcObdExhTemp;VcRvExhTempDpfHi;Ranking id for T2 temperature sensor high fault;VcFiExhTempDpf;;; -VcObdExhTemp;VcRvExhTempDpfLo;Ranking id for T2 temperature sensor low fault;VcFiExhTempDpf;;; -VcObdExhTemp;VcRvExhTempScrHi;Ranking id for T3 temperature sensor high fault;VcFiExhTempScr;;; -VcObdExhTemp;VcRvExhTempScrLo;Ranking id for T3 temperature sensor low fault;VcFiExhTempScr;;; -VcObdExhTemp;VcRvExhTempCatInit;Ranking id for T1 temperature sensor offset fault at init;VcFiExhTempCat;;; -VcObdExhTemp;VcRvExhTempDpfInit;Ranking id for T2 temperature sensor offset fault at init;VcFiExhTempDpf;;; -VcObdExhTemp;VcRvExhTempScrInit;Ranking id for T3 temperature sensor offset fault at init;VcFiExhTempScr;;; -Unused;VcRvUnused;Unused monitors;VcFiUnused;;; -VcFtivMon;VcRvFtivPrSens;Ranking Id Ftiv pressure sensor fault;VcFiFtivMon;;; -VcFtivMon;VcRvFtivStuckCl;Ranking Id Ftiv stuck closed fault;VcFiFtivMon;;; -VcFtivMon;VcRvFtivUnPrVlv;Ranking Id Ftiv under pressure valve fault;VcFiFtivMon;;; -VcFtivMon;VcRvFtivOvPrVlv;Ranking Id Ftiv over pressure valve fault;VcFiFtivMon;;; -VcPurgMon;VcRvPurgMonMp;Ranking Id purge monitor manifold purge ;VcFiPurgMon;;; -VcPurgMon;VcRvPurgMonVp;Ranking Id purge monitor over pressure purge;VcFiPurgMon;;; -VcLamCtrlM;VcRvLamCtrlMFirstSt;Ranking Id lambda control closed loop monitor first start;VcFiLamCtrlM;;; -VcAesDiffPresM;VcRvDiffPresOffsHi;Ranking Id for LR EGR differential pressure offset high;VcFiDiffPresM;;; -VcAesDiffPresM;VcRvDiffPresOffsLo;Ranking Id for LR EGR differential pressure offset low;VcFiDiffPresM;;; -VcAesDiffPresM;VcRvDiffPresStk;Ranking Id for LR EGR differential pressure stuck;VcFiDiffPresM;;; -VcAesDynPresM;VcRvBst1AmbPPlausMon;Ranking Id for boost 1 vs.ambient pressure comparison;VcFiBst1AmbPPlausMon;;; -VcAesDynPresM;VcRvBst2AmbPPlausMon;Ranking Id for boost 2 vs.ambient pressure comparison;VcFiBst2AmbPPlausMon;;; -VcAesDynPresM;VcRvBst1Bst2PlausMon;Ranking Id for boost 1 vs.boost 2 pressure comparison;VcFiBst1Bst2PlausMon;;; -VcAesDynPresM;VcRvBst2IntkMapPlausMon;Ranking Id for boost 2 vs intake manifold pressure comparison;VcFiBst2IntkMapPlausMon;;; -VcAesDynPresM;VcRvBst1IntkMapPlausMon;Ranking Id for boost 1 vs intake manifold pressure comparison;VcFiBst1IntkMapPlausMon;;; -VcAesStatPresM;VcRvAmbPCompPlausMon;Ranking Id forAmbient Pressure Rationality Monitor (comparison to other sensor at eng off);VcFiAmbPCompPlausMon;;;ATPR -VcAesStatPresM;VcRvBst1PCompPlausMon;Ranking Id for boost 1 Pressure Rationality Monitor (comparison to other sensor at eng off);VcFiBst1PCompPlausMon;;; -VcAesStatPresM;VcRvBst2PCompPlausMon;Ranking Id for boost 2 Pressure Rationality Monitor (comparison to other sensor at eng off);VcFiBst2PCompPlausMon;;; -VcAesStatPresM;VcRvIntkMnfldPCompPlausMon;Ranking Id for Intake Manifold Pressure Diff Rationality Monitor (comparison to other sensor at eng off);VcFiIntkMnfldPCompPlausMon;;;MAPIMPDR -VcAesStatPresM;VcRvExhMnfldPCompPlausMon;Ranking Id for Exhaust Manifold Pressure Diff Rationality Monitor (comparison to other sensor at eng off);VcFiExhMnfldPCompPlausMon;;;EXHMPDR -VcAesStatPresM;VcRvElcmPCompPlausMon;Ranking Id for ELCM Pressure Diff Rationality Monitor (comparison to other sensor at eng off);VcFiElcmPCompPlausMon;;; -VcLamCtrlM;VcRvLamCtrlMReSt;Ranking Id lambda control closed loop monitor restart;VcFiLamCtrlM;;; -VcObdNoxSO2;VcRvObdNoxSensUsOxyToMdl;Ranking id for Nox sensor O2 us sensor to model;VcFiNOxSensO2;;; -VcObdNoxSO2;VcRvObdNoxSensMidOxyToMdl;Ranking id for Nox sensor O2 Mid sensor to model;VcFiNOxSensO2;;; -VcObdNoxSO2;VcRvObdNoxSensDsOxyToMdl;Ranking id for Nox sensor O2 ds sensor to model;VcFiNOxSensO2;;; -VcObdNoxSOfs;VcRvObdNoxSensUsOfsTst;Ranking id for Nox sensor Us offset test;VcFiNOxSensOfs;;; -VcObdNoxSOfs;VcRvObdNoxSensMidOfsTst;Ranking id for Nox sensor Mid offset test;VcFiNOxSensOfs;;; -VcObdNoxSOfs;VcRvObdNoxSensDsOfsTst;Ranking id for Nox sensor Ds offset test;VcFiNOxSensOfs;;; -VcObdGpf;VcRvObdGpf;Ranking Id for gasoline particle filter monitor;VcFiObdGpf;;; -VcTmEdMon;VcRvEdObc1TOffsHi;Ranking Id for ED circuit OBC1 temp sensor offset high;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdObc1TOffsLo;Ranking Id for ED circuit OBC1 temp sensor offset low;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdObc1TStuck;Ranking Id for ED circuit OBC1 temp sensor stuck;VcFiEdTStuckMon;;; -VcTmEdMon;VcRvEdObc2TOffsHi;Ranking Id for ED circuit OBC2 temp sensor offset high;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdObc2TOffsLo;Ranking Id for ED circuit OBC2 temp sensor offset low;VcFiEdTOffsMon;;; -VcTmEdMon;VcRvEdObc2TStuck;Ranking Id for ED circuit OBC2 temp sensor stuck;VcFiEdTStuckMon;;; -VcOilLvl;VcRvOilLvlStck;Ranking Id for oil level sensor stuck;;;; -VcLeakMon;VcRvLeakMon;Ranking Id for leakage detection monitor;VcFiLeakMon;;; -VcTmHvacVlvM;VcRvVcHvacCooltVlvStuck;Ranking Id Climate Coolant Valve;VcFiHvacVlvMon;;; -VcMtThMon;VcRvVcHvacCooltTOffsHi;Ranking Id Climate Coolant Temp Sensor;VcFiMtTOffs;;; -VcMtThMon;VcRvVcHvacCooltTOffsLo;Ranking Id Climate Coolant Temp Sensor;VcFiMtTOffs;;; -VcMtThMon;VcRvVcHvacCooltTStuck;Ranking Id Climate Coolant Temp Sensor;VcFiHvacCooltTStuckMon;;; -VcTmHvacClntTM;VcRvVcHvacCooltTOffsHi;Ranking Id Climate Coolant Temp Sensor;VcFiHvacCooltTOffsMon;;; -VcTmHvacClntTM;VcRvVcHvacCooltTOffsLo;Ranking Id Climate Coolant Temp Sensor;VcFiHvacCooltTOffsMon;;; -VcTmHvacClntTM;VcRvVcHvacCooltTStuck;Ranking Id Climate Coolant Temp Sensor;VcFiHvacCooltTStuckMon;;; -VcTmEdMon;VcRvEdRadrVlvStuckOpen;Ranking Id Ed Radiator Bypass Valve Stuck Open;VcFiEdCoolgPfmncMon;;; -VcTmEdMon;VcRvEdRadrVlvStuckClsd;Ranking Id Ed Radiator Bypass Valve Stuck Closed;VcFiEdCoolgPfmncMon;;; -VcTmEdMon;VcRvEdCoolgPfmncLo2;Ranking Id for ED circuit system cooling performance error;VcFiEdCoolgPfmncMon;;; -VcAesMafM;VcRvIntkMnfldFlwPlausEHMon;Ranking Id for Intake Manifold Rationality Monitor With EGR High Boost;VcFiIntkMnfldFlwMdlPlausMon;;; -VcAesMafM;VcRvIntkMnfldFlwPlausELMon;Ranking Id for Intake Manifold Rationality Monitor With EGR Low Boost;VcFiIntkMnfldFlwMdlPlausMon;;; -VcAesMafM;VcRvIntkMnfldFlwPlausNHMon;Ranking Id for Intake Manifold Rationality Monitor With No EGR High Boost;VcFiIntkMnfldFlwMdlPlausMon;;; -VcAesMafM;VcRvIntkMnfldFlwPlausNLMon;Ranking Id for Intake Manifold Rationality Monitor With No EGR Low Boost;VcFiIntkMnfldFlwMdlPlausMon;;; -VcAesEChrgrM ;VcRvEChrgrMOvrSpd;Ranking Id for Echarger Over Speed fault;VcFiEChrgrM;;; -VcAesEChrgrM ;VcRvEChrgrMTemp;Event Id for Echarger Over Temperature fault;VcFiEChrgrM;;; -VcAesEChrgrM ;VcRvEChrgrMCurrent;Event Id for Echarger Under/Over current fault;VcFiEChrgrM;;; -VcAesHmdM;VcRvHmdMStk;Ranking ID for humidity sensor stuck fault;VcFiHmdM;;; -VcLinCptM;VcRvEwpSpdErr;Ranking Id for Edcp actual speed and req speed mismatch;VcFiEDEwpSpdMon;;; -VcFuelLpM;VcRvFuelLpHighH;Ranking Id for low pressure fuel system, high pressure, high fuel level;VcFiFuelLpM;;; -VcFuelLpM;VcRvFuelLpHighL;Ranking Id for low pressure fuel system, high pressure, low fuel level;VcFiFuelLpM;;; -VcFuelLpM;VcRvFuelLpLowH;Ranking Id for low pressure fuel system, low pressure, high fuel level;VcFiFuelLpM;;; -VcFuelLpM;VcRvFuelLpLowL;Ranking Id for low pressure fuel system, low pressure, low fuel level;VcFiFuelLpM;;; -VcFuelLpSensM;VcRvFuelLpSensStuck;Ranking Id for low pressure fuel system, low pressure sensor stuck;VcFiFuelLpSensM;;; -VcFuelLvlSensM;VcRvFuelLvlSensStuck;Ranking Id for low pressure fuel system, level sensor stuck;VcFiFuelLvlSensM;;; -VcFuelLvlSensM;VcRvFuelLvlSensNoise;Ranking Id for low pressure fuel system, level sensor noisy;VcFiFuelLvlSensM;;; -VcEmiPlsM;VcRvMidO2SnsrPlausLeanMon;Ranking Id for middle oxygen sensor plausability monitor lean;VcFiMidO2SnsrPlausMon;;; -VcEmiPlsM;VcRvMidO2SnsrPlausRichMon;Ranking Id for middle oxygen sensor plausability monitor rich;VcFiMidO2SnsrPlausMon;;; -VcEmiPlsM;VcRvMidO2SnsrPlausAmplMon;Ranking Id for middle oxygen sensor plausability monitor amplitude;VcFiMidO2SnsrPlausMon;;; -VcLeakMon;VcRvLeakMonBlocked;Ranking Id for leakage detection monitor blocked lines;VcFiLeakMon;;; -VcLeakMon;VcRvLeakMonRefPres;Ranking Id for leakage detection monitor pressure sensor fault;VcFiLeakMon;;; -VcAccelM;VcRvAccelMStuckLat;Ranking Id for accelerometer monitor stuck check;VcFiAccelMStuck;;; -VcAccelM;VcRvAccelMStuckLgt;Ranking Id for accelerometer monitor stuck check;VcFiAccelMStuck;;; -VcAccelM;VcRvAccelMStuckVert;Ranking Id for accelerometer monitor stuck check;VcFiAccelMStuck;;; -VcAccelM;VcRvAccelMOffsHi;Ranking Id for accelerometer monitor offset check;VcFiAccelMOffs;;; -VcAccelM;VcRvAccelMOffsLo;Ranking Id for accelerometer monitor offset check;VcFiAccelMOffs;;; -VcLamCilM;VcRvCilMSfb;Ranking Id for Cylinder Imbalance Monitor Sub-Feedback;VcFiCilM;;; -VcLamCilM;VcRvCilMLam;Ranking Id for Cylinder Imbalance Monitor Lambda Oscillation;VcFiCilM;;; -VcLamCilM;VcRvCilMEngSpd;Ranking Id for Cylinder Imbalance Monitor Engine Speed Oscillation;VcFiCilM;;; -VcTempWcacThM;VcRvWcacThSlw;Ranking Id for WCAC cooling circuit slow heat up fault;VcFiWcacThM;;; -VcLinBypVlvM;VcRvBypVlvPosTarDiff ;Ranking Id for LIN Bypass Valve Target VS position monitor;VcFiLinBypVlvM;;; -VcKersBltSlipM;VcRvKersBltSlipTimeSpan;Ranking Id for KERS Belt Slip monitor during Time Span;VcFiKersBltSlipM;;; -VcKersBltSlipM;VcRvKersBltSlipDCY;Ranking Id for KERS Belt Slip monitor during DCY;VcFiKersBltSlipM;;; -VcLeakMon;VcRvLeakMonRefPresLo;Ranking Id for leakage detection monitor reference pressure low fault;VcFiLeakMon;;; -VcLeakMon;VcRvLeakMonRefPresHi;Ranking Id for leakage detection monitor reference pressure high fault;VcFiLeakMon;;; -VcLeakMon;VcRvLeakMonSensOffs;Ranking Id for leakage detection monitor sensor offset;VcFiLeakMon;;; -VcLeakMon;VcRvLeakMonRefDiff;Ranking Id for leakage detection monitor sensor offset;VcFiLeakMon;;; -VcCdPinM;VcRvCdPinMLoAct1;Ranking Id for Sliding Camshaft Monitor Actuator Low Side Pin 1;VcFiCdPinM;;; -VcCdPinM;VcRvCdPinMLoAct2;Ranking Id for Sliding Camshaft Monitor Actuator Low Side Pin 2;VcFiCdPinM;;; -VcCdPinM;VcRvCdPinMLoAct3;Ranking Id for Sliding Camshaft Monitor Actuator Low Side Pin 3;VcFiCdPinM;;; -VcCdPinM;VcRvCdPinMLoAct4;Ranking Id for Sliding Camshaft Monitor Actuator Low Side Pin 4;VcFiCdPinM;;; -VcCdPinM;VcRvCdPinMLoAct5;Ranking Id for Sliding Camshaft Monitor Actuator Low Side Pin 5;VcFiCdPinM;;; -VcCdPinM;VcRvCdPinMLoAct6;Ranking Id for Sliding Camshaft Monitor Actuator Low Side Pin 6;VcFiCdPinM;;; -VcCdPinM;VcRvCdPinMLoAct7;Ranking Id for Sliding Camshaft Monitor Actuator Low Side Pin 7;VcFiCdPinM;;; -VcCdPinM;VcRvCdPinMLoAct8;Ranking Id for Sliding Camshaft Monitor Actuator Low Side Pin 8;VcFiCdPinM;;; -VcCdPinM;VcRvCdPinMHiAct1;Ranking Id for Sliding Camshaft Monitor Actuator High Side Pin 1;VcFiCdPinM;;; -VcCdPinM;VcRvCdPinMHiAct2;Ranking Id for Sliding Camshaft Monitor Actuator High Side Pin 2;VcFiCdPinM;;; -VcCdPinM;VcRvCdPinMHiAct3;Ranking Id for Sliding Camshaft Monitor Actuator High Side Pin 3;VcFiCdPinM;;; -VcCdPinM;VcRvCdPinMHiAct4;Ranking Id for Sliding Camshaft Monitor Actuator High Side Pin 4;VcFiCdPinM;;; -VcCdPinM;VcRvCdPinMHiAct5;Ranking Id for Sliding Camshaft Monitor Actuator High Side Pin 5;VcFiCdPinM;;; -VcCdPinM;VcRvCdPinMHiAct6;Ranking Id for Sliding Camshaft Monitor Actuator High Side Pin 6;VcFiCdPinM;;; -VcCdPinM;VcRvCdPinMHiAct7;Ranking Id for Sliding Camshaft Monitor Actuator High Side Pin 7;VcFiCdPinM;;; -VcCdPinM;VcRvCdPinMHiAct8;Ranking Id for Sliding Camshaft Monitor Actuator High Side Pin 8;VcFiCdPinM;;; -VcObdDps;VcRvDpsStuck;Ranking Id for dpf Diff Pressure Sensor monitor stuck check;VcFiDpsStuck;;; -VcObdDps;VcRvDpsStuckIce;Ranking Id for dpf Diff Pressure Sensor monitor stuck check due to Ice;VcFiDpsStuck;;; -VcObdDps;VcRvDpsPlausHi;Ranking Id for dpf Diff Pressure Sensor monitor offset Hi check;VcFiDpsPlausMon;;; -VcObdDps;VcRvDpsPlausLo;Ranking Id for dpf Diff Pressure Sensor monitor offset Lo check;VcFiDpsPlausMon;;; -VcObdDps;VcRvDpsInvHoses;Ranking Id for dpf Diff Pressure Sensor monitor Inverted Hoses check;VcFiDpsInvHoses;;; -VcTempLtClntHi;VcRvTempLtClntHi;Ranking Id for WCAC cooling circuit high temperature monitor;VcFiTempLtClntHi;;; -AcPTOffsMonr;VcRvAcOhxPOffsHi;Ranking Id for Ohx pressure sensor offset high;VcFiPTOffsMonr;;; -AcPTOffsMonr;VcRvAcOhxPOffsLo;Ranking Id for Ohx pressure sensor offset low;VcFiPTOffsMonr;;; -AcPTOffsMonr;VcRvAcOhxTOffsHi;Ranking Id for Ohx temperature sensor offset high;VcFiPTOffsMonr;;; -AcPTOffsMonr;VcRvAcOhxTOffsLo;Ranking Id for Ohx temperature sensor offset low;VcFiPTOffsMonr;;; -AcPTOffsMonr;VcRvAcWcndOutPOffsHi;Ranking Id for water cooled condenser out pressure sensor offset high;VcFiPTOffsMonr;;; -AcPTOffsMonr;VcRvAcWcndOutPOffsLo;Ranking Id for water cooled condenser out pressure sensor offset low;VcFiPTOffsMonr;;; -AcPTOffsMonr;VcRvAcWcndOutTOffsHi;Ranking Id for water cooled condenser out temperature sensor offset high;VcFiPTOffsMonr;;; -AcPTOffsMonr;VcRvAcWcndOutTOffsLo;Ranking Id for water cooled condenser out temperature sensor offset low;VcFiPTOffsMonr;;; -AcPTOffsMonr;VcRvAcCmprInPOffsHi;Ranking Id for compressor in pressure sensor offset high;VcFiPTOffsMonr;;; -AcPTOffsMonr;VcRvAcCmprInPOffsLo;Ranking Id for compressor in pressure sensor offset low;VcFiPTOffsMonr;;; -AcPTOffsMonr;VcRvAcCmprInTOffsHi;Ranking Id for compressor in temperature sensor offset high;VcFiPTOffsMonr;;; -AcPTOffsMonr;VcRvAcCmprInTOffsLo;Ranking Id for compressor in temperature sensor offset low;VcFiPTOffsMonr;;; -AcPTOffsMonr;VcRvAcCmprOutPOffsHi;Ranking Id for compressor out pressure sensor offset high;VcFiPTOffsMonr;;; -AcPTOffsMonr;VcRvAcCmprOutPOffsLo;Ranking Id for compressor out pressure sensor offset low;VcFiPTOffsMonr;;; -AcPTOffsMonr;VcRvAcCmprOutTOffsHi;Ranking Id for compressor out temperature sensor offset high;VcFiPTOffsMonr;;; -AcPTOffsMonr;VcRvAcCmprOutTOffsLo;Ranking Id for compressor out temperature sensor offset low;VcFiPTOffsMonr;;; -AcPTOffsMonr;VcRvAcChillrOutPOffsHi;Ranking Id for chiller out pressure sensor offset high;VcFiPTOffsMonr;;; -AcPTOffsMonr;VcRvAcChillrOutPOffsLo;Ranking Id for chiller out pressure sensor offset low;VcFiPTOffsMonr;;; -AcPTOffsMonr;VcRvAcChillrOutTOffsHi;Ranking Id for chiller out temperature sensor offset high;VcFiPTOffsMonr;;; -AcPTOffsMonr;VcRvAcChillrOutTOffsLo;Ranking Id for chiller out temperature sensor offset low;VcFiPTOffsMonr;;; -AcWcndVlvMonr;VcRvAcWcndVlvStuckOpend;Ranking Id for water cooled condenser shut off valve stuck opened;VcFiWcndVlvMonr;;; -AcWcndVlvMonr;VcRvAcWcndVlvStuckClsd;Ranking Id for water cooled condenser shut off valve stuck closed;VcFiWcndVlvMonr;;; -AcWcndBypVlvMonr;VcRvAcWcndBypVlvStuckOpend;Ranking Id for water cooled condenser bypass shut off valve stuck opened;VcFiWcndBypVlvMonr;;; -AcWcndBypVlvMonr;VcRvAcWcndBypVlvStuckClsd;Ranking Id for water cooled condenser bypass shut off valve stuck closed;VcFiWcndBypVlvMonr;;; -AcOhxToCmprVlvMonr;VcRvAcOhxToCmprVlvStuckOpend;Ranking Id for OHX to compressor shut off valve stuck opened;VcFiOhxToCmprVlvMonr;;; -AcOhxToCmprVlvMonr;VcRvAcOhxToCmprVlvStuckClsd;Ranking Id for OHX to compressor shut off valve stuck closed;VcFiOhxToCmprVlvMonr;;; -AcEvaprVlvMonr;VcRvAcEvaprVlvStuckOpend;Ranking Id for evaporator shut off valve stuck opened;VcFiEvaprVlvMonr;;; -AcEvaprVlvMonr;VcRvAcEvaprVlvStuckClsd;Ranking Id for evaporator shut off valve stuck closed;VcFiEvaprVlvMonr;;; -AcWcndChkVlvMonr;VcRvAcWcndChkVlvStuckOpend;Ranking Id for water cooled condenser check valve stuck opened;VcFiWcndChkVlvMonr;;; -AcWcndChkVlvMonr;VcRvAcWcndChkVlvStuckClsd;Ranking Id for water cooled condenser check valve stuck closed;VcFiWcndChkVlvMonr;;; -AcWcndChkVlvMonr;VcRvAcOhxExVlvStuckOpend;Ranking Id for OHX EX valve stuck opened;VcFiWcndChkVlvMonr;;; -AcWcndChkVlvMonr;VcRvAcOhxExVlvStuckClsd;Ranking Id for OHX EX valve stuck closed;VcFiWcndChkVlvMonr;;; -AcOhxChkVlvMonr;VcRvAcOhxChkVlvStuckOpend;Ranking Id for OHX check valve stuck opened;VcFiOhxChkVlvMonr;;; -AcOhxChkVlvMonr;VcRvAcOhxChkVlvStuckClsd;Ranking Id for OHX check valve stuck closed;VcFiOhxChkVlvMonr;;; -AcChillrVlvMonr;VcRvAcChillrVlvStuckOpend;Ranking Id for chiller valve, EXV or checkvalve, stuck opened;VcFiChillrVlvMonr;;; -AcChillrVlvMonr;VcRvAcChillrVlvStuckClsd;Ranking Id for chiller valve, EXV or checkvalve, stuck closed;VcFiChillrVlvMonr;;; -AcExVlvMonr;VcRvAcOhxExVlvSplyFlt;Ranking Id for OHX EX valve supply fault;VcFiExVlvMonr;;; -AcExVlvMonr;VcRvAcOhxExVlvIntFlt;Ranking Id for OHX EX valve internal fault;VcFiExVlvMonr;;; -AcExVlvMonr;VcRvAcOhxExVlvTFlt;Ranking Id for OHX EX valve temperature fault;VcFiExVlvMonr;;; -AcExVlvMonr;VcRvAcOhxExVlvHallSnsrFlt;Ranking Id for OHX EX valve hall sensor fault;VcFiExVlvMonr;;; -AcExVlvMonr;VcRvAcOhxExVlvStall;Ranking Id for OHX EX valve stall fault;VcFiExVlvMonr;;; -AcExVlvMonr;VcRvAcOhxExVlvPlausFlt;Ranking Id for OHX EX valve plausibility fault;VcFiExVlvMonr;;; -AcExVlvMonr;VcRvAcChillrExVlvSplyFlt;Ranking Id for chiller EX valve supply fault;VcFiExVlvMonr;;; -AcExVlvMonr;VcRvAcChillrExVlvIntFlt;Ranking Id for chiller EX valve internal fault;VcFiExVlvMonr;;; -AcExVlvMonr;VcRvAcChillrExVlvTFlt;Ranking Id for chiller EX valve temperature fault;VcFiExVlvMonr;;; -AcExVlvMonr;VcRvAcChillrExVlvHallSnsrFlt;Ranking Id for chiller EX valve hall sensor fault;VcFiExVlvMonr;;; -AcExVlvMonr;VcRvAcChillrExVlvStall;Ranking Id for chiller EX valve stall fault;VcFiExVlvMonr;;; -AcExVlvMonr;VcRvAcChillrExVlvPlausFlt;Ranking Id for chiller EX valve plausibility fault;VcFiExVlvMonr;;; -AcACCAMonr;VcRvAcCmprIntFlt;Ranking Id for Electrical AC compressor internal fault;VcFiACCAMonr;;; -AcACCAMonr;VcRvAcCmprSplyFlt;Ranking Id for Electrical AC compressor supply fault;VcFiACCAMonr;;; -AcACCAMonr;VcRvAcCmprMeclFlt;Ranking Id for Electrical AC compressor mechanical fault;VcFiACCAMonr;;; -AcACCAMonr;VcRvAcCmprTFlt;Ranking Id for Electrical AC compressor temperature fault;VcFiACCAMonr;;; -AcEvaprMonr;VcRvAcEvaprFlt;Ranking Id for Evaporator fault;VcFiEvaprMonr;;; -AcPOffsWoHpMonr;VcRvAcCmprOutPWoHpOffsHi;Ranking Id for Compressor out pressure sensor offset high in basic AC system;VcFiPOffsWoHpMonr;;; -AcPOffsWoHpMonr;VcRvAcCmprOutPWoHpOffsLo;Ranking Id for Compressor out pressure sensor offset low in basic AC system;VcFiPOffsWoHpMonr;;; -AcPOffsWoHpMonr;VcRvAcChillrOutPWoHpOffsHi;Ranking Id for Chiller out pressure sensor offset high in basic AC system;VcFiPOffsWoHpMonr;;; -AcPOffsWoHpMonr;VcRvAcChillrOutPWoHpOffsLo;Ranking Id for Chiller out pressure sensor offset low in basic AC system;VcFiPOffsWoHpMonr;;; -AcTOffsWoHpMonr;VcRvAcCmprOutTWoHpOffsHi;Ranking Id for Compressor out temperature sensor offset high in basic AC system;VcFiTOffsWoHpMonr;;; -AcTOffsWoHpMonr;VcRvAcCmprOutTWoHpOffsLo;Ranking Id for Compressor out temperature sensor offset low in basic AC system;VcFiTOffsWoHpMonr;;; -AcTOffsWoHpMonr;VcRvAcChillrOutTWoHpOffsHi;Ranking Id for Chiller out temperature sensor offset high in basic AC system;VcFiTOffsWoHpMonr;;; -AcTOffsWoHpMonr;VcRvAcChillrOutTWoHpOffsLo;Ranking Id for Chiller out temperature sensor offset low in basic AC system;VcFiTOffsWoHpMonr;;; -AcEvaprVlvWoHpMonr;VcRvAcEvaprVlvWoHpStuckOpend;Ranking Id for Evaporator shut off valve stuck opened in basic AC system;VcFiEvaprVlvWoHpMonr;;; -AcEvaprVlvWoHpMonr;VcRvAcEvaprVlvWoHpStuckClsd;Ranking Id for Evaporator shut off valve stuck closed in basic AC system;VcFiEvaprVlvWoHpMonr;;; -AcChillrVlvWoHpMonr;VcRvAcChillrVlvWoHpStuckOpend;Ranking Id for Chiller shut off valve stuck opened in basic AC system;VcFiChillrVlvWoHpMonr;;; -AcChillrVlvWoHpMonr;VcRvAcChillrVlvWoHpStuckClsd;Ranking Id for Chiller shut off valve stuck closed in basic AC system;VcFiChillrVlvWoHpMonr;;; -AcSysProtnMonr;VcRvCmprOutPeakP;Ranking Id for System protection at Compressor out peak pressure;VcFiSysProtnMonr;;; -AcSysProtnMonr;VcRvOhxPeakP;Ranking Id for System protection at Outer heat exchanger peak pressure;VcFiSysProtnMonr;;; -AcSysProtnMonr;VcRvWcndOutPeakP;Ranking Id for System protection at Water cooled condenser peak pressure;VcFiSysProtnMonr;;; -AcSysProtnMonr;VcRvCmprInLoP;Ranking Id for System protection at Compressor In low pressure;VcFiSysProtnMonr;;; -CmptmtClntTOffsDiag;VcRvCooltTPrpVlvOutOffsHi;Ranking Id for Compartment coolant temperature after branching (T2) offset high;VcFiCmptmtClntTOffs;;; -CmptmtClntTOffsDiag;VcRvCooltTPrpVlvOutOffsLo;Ranking Id for Compartment coolant temperature after branching (T2) offset low;VcFiCmptmtClntTOffs;;; -CmptmtClntTOffsDiag;VcRvCooltTPrpVlvInOffsHi;Ranking Id for Compartment coolant temperature before branching (T3) offset high;VcFiCmptmtClntTOffs;;; -CmptmtClntTOffsDiag;VcRvCooltTPrpVlvInOffsLo;Ranking Id for Compartment coolant temperature before branching (T3) offset low;VcFiCmptmtClntTOffs;;; -CmptmtClntTOffsDiag;VcRvCmptmtPmpTOffsHi;Ranking Id for Climate waterpump temperature offset high;VcFiCmptmtClntTOffs;;; -CmptmtClntTOffsDiag;VcRvCmptmtPmpTOffsLo;Ranking Id for Climate waterpump temperature offset low;VcFiCmptmtClntTOffs;;; -CmptmtClntTStkDiag;VcRvCooltTPrpVlvOutStk;Ranking Id for Compartment coolant temperature after branching (T2) stuck;VcFiCmptmtClntTStk;;; -CmptmtClntTStkDiag;VcRvCooltTPrpVlvInStk;Ranking Id for Compartment coolant temperature before branching (T3) stuck;VcFiCmptmtClntTStk;;; -CmptmtClntTStkDiag;VcRvCmptmtPmpTStk;Ranking Id for Climate waterpump temperature stuck;VcFiCmptmtClntTStk;;; -EdClntTOffsDiag;VcRvDtElecCooltTOffsHi;Ranking Id for ED coolant temperature (T1) offset high;VcFiEdClntTOffs;;; -EdClntTOffsDiag;VcRvDtElecCooltTOffsLo;Ranking Id for ED coolant temperature (T1) offset low;VcFiEdClntTOffs;;; -EdClntTOffsDiag;VcRvCiddClntTOffsHi;Ranking Id for CIDD inlet coolant temperature offset high;VcFiEdClntTOffs;;; -EdClntTOffsDiag;VcRvCiddClntTOffsLo;Ranking Id for CIDD inlet coolant temperature offset low;VcFiEdClntTOffs;;; -EdClntTOffsDiag;VcRvDcDcTOffsHi;Ranking Id for DCDC tempemperature in CIDD offset high;VcFiEdClntTOffs;;; -EdClntTOffsDiag;VcRvDcDcTOffsLo;Ranking Id for DCDC temperature in CIDD offset low;VcFiEdClntTOffs;;; -EdClntTOffsDiag;VcRvObcTOffsHi;Ranking Id for OBC temperature offset high;VcFiEdClntTOffs;;; -EdClntTOffsDiag;VcRvObcTOffsLo;Ranking Id for OBC temperature offset low;VcFiEdClntTOffs;;; -EdClntTOffsDiag;VcRvIemInvTOffsHi;Ranking Id for IEM inverter temperature offset high;VcFiEdClntTOffs;;; -EdClntTOffsDiag;VcRvIemInvtOffsLo;Ranking Id for IEM inverter temperature offset low;VcFiEdClntTOffs;;; -EdClntTOffsDiag;VcRvEradMotTOffsHi;Ranking Id for ERAD motor temperature offset high;VcFiEdClntTOffs;;; -EdClntTOffsDiag;VcRvEradMotTOffsLo;Ranking Id for ERAD motor temperature offset low;VcFiEdClntTOffs;;; -EdClntTOffsDiag;VcRvEfadMotTOffsHi;Ranking Id for EFAD motor temperature offset high;VcFiEdClntTOffs;;; -EdClntTOffsDiag;VcRvEfadMotTOffsLo;Ranking Id for EFAD motor temperature offset low;VcFiEdClntTOffs;;; -EdClntTOffsDiag;VcRvCiddInvTOffsHi;Ranking Id for Inverter temperature in CIDD offset high;VcFiEdClntTOffs;;; -EdClntTOffsDiag;VcRvCiddInvTOffsLo;Ranking Id for Inverter temperature in CIDD offset low;VcFiEdClntTOffs;;; -EdClntTOffsDiag;VcRvDtElecPmpTOffsHi;Ranking Id for ED pump temperature offset high;VcFiEdClntTOffs;;; -EdClntTOffsDiag;VcRvDtElecPmpTOffsLo;Ranking Id for ED pump temperature offset low;VcFiEdClntTOffs;;; -EdClntTStkDiag;VcRvDtElecCooltTStk;Ranking Id for ED coolant temperature (T1) stuck;VcFiEdClntTStk;;; -EdClntTStkDiag;VcRvCiddClntTStk;Ranking Id for CIDD inlet coolant temperature stuck;VcFiEdClntTStk;;; -EdClntTStkDiag;VcRvDcDcTStk;Ranking Id for DCDC temperature in CIDD stuck;VcFiEdClntTStk;;; -EdClntTStkDiag;VcRvObcTStk;Ranking Id for OBC temperature stuck;VcFiEdClntTStk;;; -EdClntTStkDiag;VcRvIemInvTStk;Ranking Id for IEM inverter temperature stuck;VcFiEdClntTStk;;; -EdClntTStkDiag;VcRvEradMotTStk;Ranking Id for ERAD motor temperature stuck;VcFiEdClntTStk;;; -EdClntTStkDiag;VcRvEfadMotTStk;Ranking Id for EFAD motor temperature stuck;VcFiEdClntTStk;;; -EdClntTStkDiag;VcRvDtElecPmpTStk;Ranking Id for ED pump temperature stuck;VcFiEdClntTStk;;; -EdClntTStkDiag;VcRvCiddInvTStk;Ranking Id for Inverter temperature in CIDD stuck;VcFiEdClntTStk;;; -EdClntTOffsDiag/CmptmtClntTOffsDiag;VcRvAmbTOffsHi;Ranking Id for Ambient temperature offset high;VcFiEdClntTOffs/VcFiCmptmtClntTOffs;;; -EdClntTOffsDiag/CmptmtClntTOffsDiag;VcRvAmbTOffsLo;Ranking Id for Ambient temperature offset low;VcFiEdClntTOffs/VcFiCmptmtClntTOffs;;; -EdVlvDiag;VcRvRadrBypVlvStk;Ranking Id for ED valve (V1) stuck;VcFiEdVlv;;; -EdVlvDiag;VcRvRadrBypVlvStkOpn;Ranking Id for ED valve (V1) stuck open;VcFiEdVlv;;; -EdVlvDiag;VcRvRadrBypVlvStkClsd;Ranking Id for ED valve (V1) stuck closed;VcFiEdVlv;;; -HvacVlvDiag;VcRvPropVlvStkClsd;Ranking Id for HVAC valve (V3) stuck closed;VcFiHvacVlv;;; -HvacVlvDiag;VcRvPropVlvStkOpn;Ranking Id for HVAC valve (V3) stuck open;VcFiHvacVlv;;; -HvBattVlvClsdDiag;VcRvCircCnctVlvStkClsd;Ranking Id for HvBatt Valve (V2) stuck closed;VcFiHvBattVlv;;; -HvBattVlvOpnDiag;VcRvCircCnctVlvStkOpn;Ranking Id for HvBatt Valve (V2) stuck open;VcFiHvBattVlv;;; -VcTqmASpdLimReq;VcRvISDSpeedLim;;-;;x; -AcACCAMonr;VcRvAcCmprOverIFlt;Ranking Id for Electrical AC compressor over current fault;VcFiACCAMonr;;; -AcACCAMonr;VcRvAcCmprSwFlt;Ranking Id for Electrical AC compressor memory and SW compatibility faults;VcFiACCAMonr;;; -AcPOffsWoHpMonr;VcRvAcWoHpPOffs;Ranking Id for Pressure offset fault, unknown sensor, in basic AC system;VcFiPOffsWoHpMonr;;; -AcTOffsWoHpMonr;VcRvAcWoHpTOffs;Ranking Id for Temperature offset fault, unknown sensor, in basic AC system;VcFiTOffsWoHpMonr;;; -ClntTOffsDiag;VcRvHvchOutlTOffsHi;Ranking Id for Hvch outlet temperature offset high;VcFiCmptmtClntTOffs;;; -ClntTOffsDiag;VcRvHvchOutlTOffsLo;Ranking Id for Hvch outlet temperature offset low;VcFiCmptmtClntTOffs;;; -ClntTOffsDiag;VcRvHvchIntkOffsHi;Ranking Id for Hvch intake temperature offset high;VcFiCmptmtClntTOffs;;; -ClntTOffsDiag;VcRvHvchIntkOffsLo;Ranking Id for Hvch intake temperature offset low;VcFiCmptmtClntTOffs;;; -LinPrpVlvDiag;VcRvLinPrpVlvTarDiffClsd;Ranking Id for Lin proportional valve (V3) Target position difference - closed;VcFiLinPrpVlv;;; -LinPrpVlvDiag;VcRvLinPrpVlvTarDiffOpn;Ranking Id for Lin proportional valve (V3) Target position difference - open;VcFiLinPrpVlv;;; -VcEmiPlsM;VcRvAftO2SnsrPlausLeanMon;Ranking Id for after oxygen sensor plausability monitor lean;VcFiAftO2SnsrPlausMon;;; -VcEmiPlsM;VcRvAftO2SnsrPlausRichMon;Ranking Id for after oxygen sensor plausability monitor rich;VcFiAftO2SnsrPlausMon;;; -VcEmiPlsM;VcRvAftO2SnsrPlausAmplMon;Ranking Id for after oxygen sensor plausability monitor amplitude;VcFiAftO2SnsrPlausMon;;; -VcOilTMon;VcRvOilTMon;Ranking Id for high oil temperature monitor;VcFiOilTMon;;; -VcNoxSensMgr;VcRvNOxSensMidHeater;Ranking id for Mid sensor heater performance error;VcFiNOxSensMidHeaterDiag;;; -VcNoxSensMgr;VcRvNOxSensMidAvailability;Ranking id for Mid sensor availability error;VcFiNOxSensMidAvailabilityDiag;;; -VcNoxSensMgr;VcRvNOxSensMidReadiness;Ranking id for Mid sensor readiness error;VcFiNOxSensMidReadinessDiag;;; -VcNoxSensMgr;VcRvNOxSensMidCurveAHi;Ranking id for Mid sensor curve diagnosis condition A;VcFiNOxSensMidCurveDiagA;;; -VcNoxSensMgr;VcRvNOxSensMidCurveALo;Ranking id for Mid sensor curve diagnosis condition A low;VcFiNOxSensMidCurveDiagA;;; -VcObdNoxStartUp;VcRvNOxSnsrUsHtr;Ranking id for Heater performance error;VcFiNOxSnsrUsHtr;;; -VcObdNoxStartUp;VcRvNOxSnsrMidHtr;Ranking id for Heater performance error;VcFiNOxSnsrMidHtr;;; -VcObdNoxStartUp;VcRvNOxSnsrDsHtr;Ranking id for Heater performance error;VcFiNOxSnsrDsHtr;;; -VcObdNoxStartUp;VcRvNOxSnsrUsReady;Ranking id for readiness not reached in time;VcFiNOxSnsrUsReady;;; -VcObdNoxStartUp;VcRvNOxSnsrMidReady;Ranking id for readiness not reached in time;VcFiNOxSnsrMidReady;;; -VcObdNoxStartUp;VcRvNOxSnsrDsReady;Ranking id for readiness not reached in time;VcFiNOxSnsrDsReady;;; -VcLamRespM;VcRvSymRespM;Ranking ID for Front Oxygen Sensor Symmetric Slow Response Monitor;VcFiRespM;;; -VcLamRespM;VcRvLRRespM;Ranking ID for Front Oxygen Sensor Lean to Rich Slow Response Monitor;VcFiRespM;;; -VcLamRespM;VcRvRLRespM;Ranking ID for Front Oxygen Sensor Rich to Lean Slow Response Monitor;VcFiRespM;;; -VcIntkVlvM;VcRvIntkVlvMin;Ranking ID for intake valve monitor;VcFiIntkVlv;;; -VcIntkVlvM;VcRvIntkVlvMax;Ranking ID for intake valve monitor;VcFiIntkVlv;;; -VcIntkVlvM;VcRvIntkVlvFreq;Ranking ID for intake valve monitor;VcFiIntkVlv;;; diff --git a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_Float32.csv b/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_Float32.csv deleted file mode 100644 index f77e518..0000000 --- a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_Float32.csv +++ /dev/null @@ -1,51 +0,0 @@ -Range Min;Range Max -0xE300;0xE32F -DID_NAME;DID ID -rVcDepTre_Tq_WhlMotSysTqEstForDID;0xE300 -rVcDepTre_Tq_IsgTqEstForDID;0xE301 -rVcDepTre_Tq_WhlMotSysTqReqForDID;0xE302 -rVcDepTre_Tq_IsgTqReqForDID;0xE303 -rVcDepTre_rt_TqTransmForDID;0xE304 -rVcDepTre_Tq_ReqAtWhlNoRcfForDID;0xE305 -rVcDepTre_Tq_BrkTqAtWhlsReqForDID;0xE306 -rVcDepTre_rt_TrsmTrqRatForDID;0xE307 -rVcDepTre_Tq_CrShaftForDID;0xE308 -rVcDepTre_Tq_EstFrontWheelTorqueForDID;0xE309 -rVcDepTre_Tq_PropCrshAllwTotForDID;0xE30A -rVcDepTre_Tq_PropWhlAllwTotForDID;0xE30B -rVcDepTre_Tq_DrReqForDID;0xE30C -rVcDepTre_F_DrReqForDID;0xE30D -rVcDepTre_F_CreepForDID;0xE30E -rVcMtThMon_Pw_HvBattCoolMedDID;0xE30F -rVcFtivMon_Z_GasVolAppr;0xE310 -rVcFtivMon_p_FtivPrOffs;0xE311 -rVcFtivMon_p_ElcmPrOffs;0xE312 -rVcMtThMon_E_LtSnsrStuckIntPw;0xE313 -rVcFtivMon_X_FastPassRatio;0xE314 -rVcFtivMon_D_FullDiagTotNum;0xE315 -rVcMtThMon_E_HvgTeStuckIntPw;0xE316 -rVcFtivMon_p_FtivPrEngOffDID;0xE317 -rVcFtivMon_p_FtivFpmOffs;0xE318 -rVcMtThMon_Te_HvBattCoolAvgDiffNVM;0xE319 -sVcMtThMon_Pw_HvBattCoolEff;0xE31A -rVcMtThMon_Pw_HvBattCooltPasAvg;0xE31B -rVcMtThMon_D_HvBattCoolAvgDidFloat;0xE31C -rVcMtThMon_Te_MedTWtrPmpInt;0xE31D -sVcHvg_Te_InvActl;0xE31E -sVcBec_Te_BattHv;0xE31F -sVcObc_Te_Actl;0xE320 -sVcErad_Te_InvActl;0xE321 -sVcCidd_Te_Coolt;0xE322 -sVcHvg_Te_WndgActl;0xE323 -sVcAccm_n_ElacCmprActl;0xE324 -sVcBec_Te_HvBattCooltT;0xE325 -sVcCcm_Te_EvapReq;0xE326 -sVcBec_Te_HvBattTAvg;0xE327 -rVcLinBypVlvM_X_PosnActFromPropVlvDID;0xE328 -rVcLinBypVlvM_X_PosnReqForPropVlvDID;0xE329 -rVcLinBypVlvM_X_TgtActTestValueDID;0xE32A -rVcTempThM_Z_MeanGaDID;0xE32B -rVcTempThM_Z_IdleRatioDID;0xE32C -sVcEc_Te_HvacClnt;0xE32D -rVcTqmBCrshM_Tq_CrshTrqAllwdDlyFilt;0xE32E -rVcTqmBWhlM_Tq_WhlTrqAllwdDlyFilt;0xE32F diff --git a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_FullRange_Float32.csv b/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_FullRange_Float32.csv deleted file mode 100644 index 359f644..0000000 --- a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_FullRange_Float32.csv +++ /dev/null @@ -1,385 +0,0 @@ -Range Min;Range Max -0xE300;0xE5FF -DID_NAME;DID ID -rVcDepTre_Tq_WhlMotSysTqEstForDID;0xE300 -rVcDepTre_Tq_IsgTqEstForDID;0xE301 -rVcDepTre_Tq_WhlMotSysTqReqForDID;0xE302 -rVcDepTre_Tq_IsgTqReqForDID;0xE303 -rVcDepTre_rt_TqTransmForDID;0xE304 -rVcDepTre_Tq_ReqAtWhlNoRcfForDID;0xE305 -rVcDepTre_Tq_BrkTqAtWhlsReqForDID;0xE306 -rVcDepTre_rt_TrsmTrqRatForDID;0xE307 -rVcDepTre_Tq_CrShaftForDID;0xE308 -rVcDepTre_Tq_EstFrontWheelTorqueForDID;0xE309 -rVcDepTre_Tq_PropCrshAllwTotForDID;0xE30A -rVcDepTre_Tq_PropWhlAllwTotForDID;0xE30B -rVcDepTre_Tq_DrReqForDID;0xE30C -rVcDepTre_F_DrReqForDID;0xE30D -rVcDepTre_F_CreepForDID;0xE30E -rVcMtThMon_Pw_HvBattCoolMedDID;0xE30F -rVcFtivMon_Z_GasVolAppr;0xE310 -rVcFtivMon_p_FtivPrOffs;0xE311 -rVcFtivMon_p_ElcmPrOffs;0xE312 -rVcMtThMon_E_LtSnsrStuckIntPw;0xE313 -rVcFtivMon_X_FastPassRatio;0xE314 -rVcFtivMon_D_FullDiagTotNum;0xE315 -rVcMtThMon_E_HvgTeStuckIntPw;0xE316 -rVcFtivMon_p_FtivPrEngOffDID;0xE317 -rVcFtivMon_p_FtivFpmOffs;0xE318 -rVcMtThMon_Te_HvBattCoolAvgDiffNVM;0xE319 -sVcMtThMon_Pw_HvBattCoolEff;0xE31A -rVcMtThMon_Pw_HvBattCooltPasAvg;0xE31B -rVcMtThMon_D_HvBattCoolAvgDidFloat;0xE31C -rVcMtThMon_Te_MedTWtrPmpInt;0xE31D -sVcHvg_Te_InvActl;0xE31E -sVcBec_Te_BattHv;0xE31F -sVcObc_Te_Actl;0xE320 -sVcErad_Te_InvActl;0xE321 -sVcCidd_Te_Coolt;0xE322 -sVcHvg_Te_WndgActl;0xE323 -sVcAccm_n_ElacCmprActl;0xE324 -sVcBec_Te_HvBattCooltT;0xE325 -sVcCcm_Te_EvapReq;0xE326 -sVcBec_Te_HvBattTAvg;0xE327 -rVcLamAdpM_rt_CtrlAdpTot;0xE328 -sVcEc_Te_LtClnt;0xE329 -sVcErad_Te_WndgActl;0xE32A -sVcDcdc_Te_Actl;0xE32B -sVcEdcp_Te_MedTWtrPmpInt;0xE32C -rVcNoxSensMgr_Z_UsCorO2P;0xE32D -rVcNoxSensMgr_Z_UsCorNH3;0xE32E -rVcNoxSensMgr_Z_UsCorNO2;0xE32F -rVcNoxSensMgr_Z_UsCorNOxP;0xE330 -rVcNoxSensMgr_Z_Empty1;0xE331 -sVcNoxSensMgr_X_NoxSensUsO2;0xE332 -sVcNoxSensMgr_X_NoxSensUsLambdaLin;0xE333 -sVcNoxSensMgr_Z_NoxSensUsNOx;0xE334 -rVcNoxSensMgr_rt_UsAvailable;0xE335 -rVcNoxSensMgr_t_UsNOxReadyTime;0xE336 -rVcNoxSensMgr_t_UsO2ReadyTime;0xE337 -rVcNoxSensMgr_X_SelfTstUsBufAvg;0xE338 -rVcNoxSensMgr_Z_DsCorNO2;0xE339 -rVcNoxSensMgr_Z_DsCorO2P;0xE33A -rVcNoxSensMgr_Z_DsCorNOxP;0xE33B -rVcNoxSensMgr_Z_DsCorNH3;0xE33C -rVcNoxSensMgr_Z_Empty2;0xE33D -sVcNoxSensMgr_X_NoxSensDsO2;0xE33E -sVcNoxSensMgr_X_NoxSensDsLambdaLin;0xE33F -sVcNoxSensMgr_Z_NoxSensDsNOx;0xE340 -rVcNoxSensMgr_rt_DsAvailable;0xE341 -rVcNoxSensMgr_t_DsNOxReadyTime;0xE342 -rVcNoxSensMgr_t_DsO2ReadyTime;0xE343 -rVcNoxSensMgr_X_SelfTstDsBufAvg;0xE344 -rVcObdCmn_Te_AveAmbiTempDID;0xE345 -rVcObdCmn_Te_AveBoostTempDID;0xE346 -rVcObdCmn_Te_AveClntTempDID;0xE347 -rVcObdCmn_Te_AveOilTempDID;0xE348 -rVcObdCmn_Te_AveInManiTempDID;0xE349 -sVcAesRx_n_EchrgrSpd;0xE34A -rVcTempClntMod_t_AftFirstStaTxDID;0xE34B -rVcTempClntMod_t_EngOffFirstStaTxDID;0xE34C -rVcTempClntMod_Te_EstClntTempDID;0xE34D -rVcTempClntMod_Te_EstClntTempOBDDID;0xE34E -rVcTempStkM_Z_BstPresDiffFltDID;0xE34F -rVcTempStkM_U_BstTempMaxDID;0xE350 -rVcTempStkM_U_BstTempMinDID;0xE351 -rVcTempStkM_Te_EstEctMaxTempDID;0xE352 -rVcTempStkM_Te_EstEctMinTempDID;0xE353 -rVcTempStkM_Te_ClntTempMaxDID;0xE354 -rVcTempStkM_Te_ClntTempMinDID;0xE355 -sVcAesTx_md_EgrFlowTar;0xE356 -rVcTempStkM_U_InManiTempMaxDID;0xE357 -rVcTempStkM_U_InManiTempMinDID;0xE358 -rVcAesVe_an_Ovlp;0xE359 -rVcEmiCatM_Z_PeriodCnt;0xE35A -rVcEmiCatM_Z_TestValue;0xE35B -rVcEmiPlsM_U_HegoMax;0xE35C -rVcEmiPlsM_U_HegoMin;0xE35D -rVcLamAdp_rt_Adp;0xE35E -rVcLamDynM_Z_PsTstVluSym;0xE35F -sVcAesMo_m_CylPurg;0xE360 -sVcAesMo_md_CylExh;0xE361 -sVcAesMo_md_CylPurg;0xE362 -sVcAesTe_Te_CatC;0xE363 -sVcAesTe_Te_CatMidC;0xE364 -sVcAesTx_m_CylLoad;0xE365 -sVcAesTx_X_TrbWgTar;0xE366 -sVcamAdp_rt_AdpTx;0xE367 -sVcCmnSta_t_AftFirstStaTotTx;0xE368 -sVcCmnSta_t_AftFirstStaTx;0xE369 -sVcEc_lam_LamLin;0xE36A -sVcEc_n_Eng;0xE36B -sVcEc_p_Amb;0xE36C -sVcEc_rt_VprConc;0xE36D -sVcEc_Te_EngClnt;0xE36E -sVcEc_U_LamBinRe;0xE36F -sVcEc_U_Sys;0xE370 -sVcEmiAdp_rt_AdpTx;0xE371 -sVcEmiCatM_Z_Rank;0xE372 -sVcEmiHeat_Z_CatHeatIdx;0xE373 -sVcFuelPTar_p_RailTx;0xE374 -sVcFuelTx_p_RailTar;0xE375 -sVcLamCtrl_rt_PhiMdl;0xE376 -sVcLamCtrl_rt_TarPhiMdl;0xE377 -sVcLamTar_lam_TarTx;0xE378 -sVcPurgAdp_phi_VapConc;0xE379 -sVcVVTTx_an_VVTeTar;0xE37A -sVcVVTTx_an_VVTiTar;0xE37B -yVcInjFuCut_B_Actv;0xE37C -rVcTempWcacClntMod_Te_EstWcacClntTempOBDDID;0xE37D -yVcLamTar_B_CatMCtrl;0xE37E -sVcEc_Te_Amb;0xE37F -sVcLamAdp_rt_AdpTx;0xE380 -rVcTrsmShfShkMon_Z_FAlmIncSc;0xE381 -rVcObdCmn_t_ClimaTiOfEndDID;0xE382 -rVcObdCmn_Te_AveWndgActlTempDID;0xE383 -rVcObdCmn_Te_AveInAirTempDID;0xE384 -rVcObdCmn_Te_AveLtClntWcacTempDID;0xE385 -yVcObdCmn_B_PreHeaterDID;0xE386 -rVcTrsmHeatMon_X_OilFlow;0xE387 -rVcTrsmShfShkMon_Z_Shk4LoGear;0xE388 -rVcTrsmShfShkMon_Z_Shk4GrGear;0xE389 -rVcTrsmShfShkMon_Z_Shk4HiGear;0xE38A -rVcScrAd_rt_Nh3CorrnOldBefLimn;0xE38B -rVcScrAd_rt_Nh3CorrnOldOldBefLimn;0xE38C -rVcObdGpf_Z_exhVolFlow;0xE38D -rVcObdGpf_p_GpfDiffSnsrAveFlt;0xE38E -rVcObdGpf_p_DiffPresModFlt;0xE38F -rVcPurgMon_Z_SwiftStatus;0xE390 -rVcPurgMon_p_CmpMeasAmpMp;0xE391 -rVcPurgMon_Z_DutyCmpMp;0xE392 -rVcPurgMon_p_MeasAmpMp;0xE393 -rVcPurgMon_Z_DutyCmpVp;0xE394 -rVcPurgMon_p_MeasAmpVp;0xE395 -rVcPurgMon_p_CmpMeasAmpVp;0xE396 -rVcTempStkM_Te_InAirTempMaxDID;0xE397 -rVcTempStkM_Te_InAirTempMinDID;0xE398 -rVcTrsmShfShkMon_Z_FAlm4GrGear;0xE399 -rVcTrsmShfShkMon_Z_FAlm4LoGear;0xE39A -rVcTrsmShfShkMon_Z_FAlm4HiGear;0xE39B -rVcTrsmShfShkMon_Z_FAlm4TipGear;0xE39C -rVcTrsmShfShkMon_Z_Shk4TipGear;0xE39D -sVcEdcp_I_CooltPmpAct;0xE39F -sVcEc_t_PrpsnSysOffTime;0xE3A0 -rVcTmEdMon_E_HvgStuck;0xE3A1 -rVcTmEdMon_E_EradStuck;0xE3A2 -rVcTmEdMon_E_LtSnsrStuck;0xE3A3 -sVcAesTx_md_EgrVirtSnsr;0xE3A4 -sVcTmAf_X_FanPwmReq;0xE3A5 -rVcTqeBCrsh_Tq_BrkInst;0xE3A6 -sVcTqeBFrntWhlProp_Tq_FrntWhlPropTrq;0xE3A7 -sVcTqeBRearWhl_Tq_PropTrqMax;0xE3A8 -sVcCidd_Tq_IsgTqEst;0xE3A9 -sVcIem_Tq_WhlMotSysTqEst;0xE3AA -sVcTqmCSpdLimArb_v_MaxAsilA;0xE3AB -rVcTqmBCrshM_Tq_AllwdCrshTqPropDly;0xE3AC -rVcTqmACrshM_Tq_AllwdCrshTqPropDly;0xE3AD -rVcTqmBFrntM_Tq_FrntWhlTrqAllwdFilt;0xE3AE -rVcTqmAFrntM_Tq_FrntWhlTrqAllwdFilt;0xE3AF -rVcTqmARearM_Tq_AllwdRearAxisTqPropDly;0xE3B1 -rVcTqmBRearM_Tq_AllwdRearAxisTqPropDly;0xE3B2 -rVcTqmBBrkM_Tq_AllwdWhlBrkTq;0xE3B3 -rVcTqmBBrkM_Tq_EstWhlBrkTq;0xE3B4 -rVcTqmAAr_Tq_DTReqCrsh;0xE3B5 -sVcVmcTfa_Tq_ReqAtWhlNoRcf;0xE3B6 -rVcEmiGpf_m_TotOilCns;0xE3B7 -rVcEmiGpf_m_SootFF;0xE3B8 -rVcObdNoxSO2_rt_LamRef;0xE3B9 -rVcObdNoxSO2_X_UsO2Flt;0xE3BA -rVcObdNoxSO2_X_DsO2Flt;0xE3BB -rVcObdNoxSO2_X_RefO2Flt;0xE3BC -rVcObdNoxSO2_X_UsO2DiffAvg;0xE3BD -rVcObdNoxSO2_X_DsO2DiffAvg;0xE3BE -sVcObdScr_rt_CnvnMeasd;0xE3BF -sVcObdScr_rt_CnvnRef;0xE3C0 -sVcObdScr_rt_CnvnMin;0xE3C1 -rVcObdScr_rt_Nh3ToNoxDsMdld;0xE3C2 -sVcAtTe_Te_ScrAvg;0xE3C3 -sVcScrDem_md_UreaDes;0xE3C4 -sVcScrMdl_M_StoredNh3;0xE3C5 -rVcScrMdl_rt_No2NoxWeight;0xE3C6 -rVcScrMdl_Z_Capacity;0xE3C7 -rVcScrMdl_rt_Nh3ExhWeightNoAd;0xE3C8 -rVcScrAsc_Z_AscConcNh3Ds;0xE3C9 -rVcScrAsc_md_AscNh3Ds;0xE3CA -rVcScrAsc_rt_AscNo2ToNoxDs;0xE3CB -rVcScrAsc_Z_AscNoxSensDsMdld;0xE3CC -rVcTmEdMon_Te_OffsAvg;0xE3CD -rVcTempStkM_Te_EstWcacTMaxTempDID;0xE3CE -rVcTempStkM_Te_EstWcacTMinTempDID;0xE3CF -rVcTempStkM_Te_WcacTMaxTempDID;0xE3D0 -rVcTempStkM_Te_WcacTMinTempDID;0xE3D1 -rVcTrsmShfShkMon_Z_FAlm4SpShfMode;0xE3D2 -rVcTrsmShfShkMon_Z_Shk4SpShfMode;0xE3D3 -rVcTempClntMod_Te_EstClntTempOBDLeakDID;0xE3D4 -sVcLamAdp_rt_AdpTx;0xE3D5 -rVcLamAdp_rt_Val11;0xE3D6 -rVcLamAdp_rt_Val12;0xE3D7 -rVcLamAdp_rt_Val13;0xE3D8 -rVcLamAdp_rt_Val21;0xE3D9 -rVcLamAdp_rt_Val22;0xE3DA -rVcLamAdp_rt_Val23;0xE3DB -rVcLamAdp_rt_Val31;0xE3DC -rVcLamAdp_rt_Val32;0xE3DD -rVcLamAdp_rt_Val33;0xE3DE -rVcLamAdp_rt_Val41;0xE3DF -rVcLamAdp_rt_Val42;0xE3E0 -rVcLamAdp_rt_Val43;0xE3E1 -rVcTempWcacClntMod_Te_EstWcacClntTempDID;0xE3E2 -sVcLamCtrl_rt_Phi;0xE3E3 -sVcLamCtrl_rt_PhiMdl;0xE3E4 -rVcObdCmn_Te_AveWcacUsAirTempDID;0xE3E5 -sVcAesRx_X_EchrgrTmpIdx;0xE3E6 -sVcLamFuel_rt_AFFB;0xE3E7 -sVcLamCtrl_rt_CtrlTx;0xE3E8 -sVcLamFuel_m_MeanTx;0xE3E9 -rVcObdCmn_Te_EngineClntTempAtStartDID;0xE3EA -rVcObdCmn_Te_WcacClntTempAtStartDID;0xE3EB -rVcObdCmn_Te_AveWcacUsTempDID;0xE3EC -rVcObdCmn_Te_AveLPFuelTempDID;0xE3ED -rVcObdCmn_Te_AveEChargerTempDID;0xE3EE -rVcTempStkM_Te_EstOilTempMaxDID;0xE3EF -rVcTempStkM_Te_EstOilTempMinDID;0xE3F0 -rVcTempStkM_Te_OilTempMaxDID;0xE3F1 -rVcTempStkM_Te_OilTempMinDID;0xE3F2 -sVcAesCmpr_p_CmprHPSp;0xE3F3 -sVcAesSp_rt_EgrSplit;0xE3F4 -rVcTempStkM_U_EChrgrTempMaxDID;0xE3F5 -rVcTempStkM_U_EChrgrTempMinDID;0xE3F6 -rVcTempStkM_Te_EstLPFuTMaxDID;0xE3F7 -rVcTempStkM_Te_EstLPFuTMinDID;0xE3F8 -rVcTempStkM_Te_LPFuelTempMaxDID;0xE3F9 -rVcTempStkM_Te_LPFuelTempMinDID;0xE3FA -sVcAesTx_md_EgrTotEstPosn;0xE3FB -sVcAesTx_p_ExhMnfld;0xE3FC -rVcTempStkM_U_WcacUsAirTMaxDID;0xE3FD -rVcTempStkM_U_WcacUsAirTMinDID;0xE3FE -sVcAesCmpr_p_CmprSp;0xE3FF -rVcLeakMon_p_RefRel;0xE500 -rVcLeakMon_p_RefRel2nd;0xE501 -rVcLeakMon_X_FuelLevelFilterOn;0xE502 -rVcLeakMon_Te_AmbOn;0xE503 -rVcLeakMon_p_ElcmAmb;0xE504 -rVcLeakMon_phi_VapConcFilt;0xE505 -rVcLeakMon_m_AccPurge;0xE506 -rVcLeakMon_L_TestValueLatest;0xE507 -rVcLeakMon_p_ElcmFltPa;0xE508 -rVcLeakMon_L_FaultLimLargeLeak;0xE509 -rVcLeakMon_L_FaultLimSmallLeak;0xE50A -sVcAccelM_An_LatEngOff;0xE50B -sVcAccelM_An_LongEngOff;0xE50C -rVcLeakMon_p_RefLatest;0xE50D -rVcLeakMon_an_LgtLatest;0xE50E -rVcLeakMon_an_LatLatest;0xE50F -rVcTqmBWhl_Tq_WhlTrqAllwdFilt;0xE510 -rVcFuelCtrl_n_MemPmpSpdInAr1;0xE511 -rVcFuelCtrl_n_MemPmpSpdInAr2;0xE512 -rVcFuelCtrl_n_MemPmpSpdInAr3;0xE513 -rVcFuelCtrl_n_MemPmpSpdInAr4;0xE514 -rVcFuelCtrl_t_MemTiInAr1;0xE515 -rVcFuelCtrl_t_MemTiInAr2;0xE516 -rVcFuelCtrl_t_MemTiInAr3;0xE517 -rVcFuelCtrl_t_MemTiInAr4;0xE518 -rVcFuelCtrl_Z_MemFuFlowFilVal;0xE51A -rVcFuelCtrl_Z_MemFuFlowCnsVal;0xE51B -sVcFuelTx_Te_LpFu;0xE51C -rVcLamAdp_rt_CylDeactvnVal11;0xE51D -rVcLamAdp_rt_CylDeactvnVal12;0xE51E -rVcLamAdp_rt_CylDeactvnVal13;0xE51F -rVcLamAdp_rt_CylDeactvnVal21;0xE520 -rVcLamAdp_rt_CylDeactvnVal22;0xE521 -rVcLamAdp_rt_CylDeactvnVal23;0xE522 -rVcLamAdp_rt_CylDeactvnVal31;0xE523 -rVcLamAdp_rt_CylDeactvnVal32;0xE524 -rVcLamAdp_rt_CylDeactvnVal33;0xE525 -rVcLamAdp_rt_CylDeactvnVal41;0xE526 -rVcLamAdp_rt_CylDeactvnVal42;0xE527 -rVcLamAdp_rt_CylDeactvnVal43;0xE528 -rVcScrDpm_m_DpmRngLo;0xE529 -rVcScrDpm_m_DpmRngHi;0xE52A -sVcAesRx_X_IntkMafSnsrHmd;0xE52C -sVcAesPs_p_CmprMechSp;0xE52D -sVcFuelTx_p_Tar;0xE52E -sVcFuelTx_X_LpPumpDuty;0xE52F -rVcLinBypVlvM_X_PosnActFromPropVlvDID;0xE530 -rVcLinBypVlvM_X_PosnReqForPropVlvDID;0xE531 -rVcLinBypVlvM_X_TgtActTestValueDID;0xE532 -rVcTempStkM_Z_BstWcacPresDiffFltDID;0xE533 -rVcTempThM_Z_IdleRatioDID;0xE534 -rVcTempThM_Z_MeanGaDID;0xE535 -rVcTqeBCrsh_Tq_BrkInstNe;0xE536 -rVcTqeBCrsh_Tq_BrkInstAir;0xE537 -sVcTqeBFrntWhl_Tq_PropTrq;0xE538 -sVcTqeBRearWhl_Tq_PropTrqMax;0xE539 -rVcTqmBCrshM_Tq_CrshTrqAllwdDlyFilt;0xE53A -rVcTqmBWhlM_Tq_WhlTrqAllwdDlyFilt;0xE53B -rVcRdp_Z_DrvNoxUrbCorrDID;0xE53C -rVcRdp_Z_DrvNoxTotCorrDID;0xE53D -rVcNoxSensMgr_t_UsHeatupTime;0xE54A -rVcNoxSensMgr_t_UsNotHeatedTime;0xE54B -rVcNoxSensMgr_t_DsHeatupTime;0xE54C -rVcNoxSensMgr_t_DsNotHeatedTime;0xE54D -rVcNoxSensMgr_X_SelfTstUsOxyDif;0xE54E -rVcNoxSensMgr_p_SelfTstUsDpfDif;0xE54F -rVcNoxSensMgr_X_SelfTstUsO2LpFlt;0xE550 -rVcNoxSensMgr_X_SelfTstDsOxyDif;0xE551 -rVcNoxSensMgr_p_SelfTstDsDpfDif;0xE552 -rVcNoxSensMgr_X_SelfTstDsO2LpFlt;0xE553 -rVcNoxSensMgr_D_DUMMY_1;0xE554 -rVcNoxSensMgr_D_DUMMY_2;0xE555 -rVcNoxSensMgr_D_DUMMY_3;0xE556 -rVcNoxSensMgr_D_DUMMY_4;0xE557 -rVcNoxSensMgr_t_SelfTstUsRunTiDid;0xE558 -rVcNoxSensMgr_t_SelfTstDsRunTiDid;0xE559 -rVcObdNoxSOfs_t_SnceEffDnox;0xE55A -rVcObdScr_rt_AlphaDosFlt;0xE55B -rVcObdLntNox_t_TiSnceEffDnox;0xE55C -rVcObdDps_t_IceRemAccTime;0xE55D -rVcObdDps_t_TimeSincePlCmplt;0xE55E -rVcObdDps_p_IHoLoTstVal;0xE55F -rVcDpmsCtrl_Te_SootSnsrRgnTeMax;0xE560 -rVcDpmsCtrl_t_SootSnsrRgnTi;0xE561 -rVcDpmsCtrl_t_SootSnsrAccRgnTi;0xE562 -rVcDpmsCtrl_t_SootSnsrMeasTi;0xE563 -rVcObdDpms_t_DUMMY_1;0xE564 -rVcObdDpms_t_DUMMY_2;0xE565 -rVcObdDpms_t_DUMMY_3;0xE566 -rVcObdDpms_Te_ClgTipTBfrClDwn;0xE567 -rVcObdDpms_Te_ClgTipTAftrClDwn;0xE568 -rVcObdDpms_Te_ClgTipClDwnTEst;0xE569 -rVcObdDpms_Te_OoeTstVal;0xE56A -rVcObdDpms_t_DUMMY_4;0xE56B -rVcObdDpms_t_DUMMY_5;0xE56C -rVcObdDpms_t_DUMMY_6;0xE56D -rVcObdDpms_t_DUMMY_7;0xE56E -sVcEc_Te_HvacClnt;0xE56F -rVcLeakMon_Te_ClntStart;0xE570 -rVcLeakMon_Te_AmbStart;0xE571 -sVcLeakMon_L_EstLeak;0xE572 -rVcLeakMon_D_State;0xE573 -rVcLeakMon_L_DistLatest;0xE574 -rVcEmiGpf_m_SootEst;0xE575 -rVcObdGpf_p_PTDifMdlFlt;0xE576 -sVcAesRx_p_EgrLrDiffSnsr;0xE577 -sVcAesRx_p_EgrLrDiffSnsrRaw;0xE578 -rVcNoxSensMgr_Z_MidCorO2P;0xE579 -rVcNoxSensMgr_Z_MidCorNH3;0xE57A -rVcNoxSensMgr_Z_MidCorNO2;0xE57B -rVcNoxSensMgr_Z_MidCorNOxP;0xE57C -sVcNoxSensMgr_X_NoxSensMidO2;0xE57D -sVcNoxSensMgr_X_NoxSensMidLambdaLin;0xE57E -sVcNoxSensMgr_Z_NoxSensMidNOx;0xE57F -rVcNoxSensMgr_t_MidHeatupTime;0xE580 -rVcNoxSensMgr_t_MidNotHeatedTime;0xE581 -rVcNoxSensMgr_rt_MidAvailable;0xE582 -rVcNoxSensMgr_t_MidNOxReadyTime;0xE583 -rVcNoxSensMgr_t_MidO2ReadyTime;0xE584 -rVcNoxSensMgr_X_SelfTstMidO2LpFlt;0xE585 -rVcNoxSensMgr_X_SelfTstMidOxyDif;0xE586 -rVcNoxSensMgr_p_SelfTstMidDpfDif;0xE587 -rVcNoxSensMgr_X_SelfTstMidBufAvg;0xE588 -rVcNoxSensMgr_t_SelfTstMidRunTiDid;0xE589 -rVcObdLnt_t_TiSnceEffDnox;0xE590 -rVcLamDynCcM_t_FinTvLastDly;0xE591 -rVcLamDynCcM_t_FinTvLastSlp;0xE592 -rVcTmEdMon_t_EdCPmpOffTime;0xE593 diff --git a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_FullRange_UInt32.csv b/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_FullRange_UInt32.csv deleted file mode 100644 index 36638dc..0000000 --- a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_FullRange_UInt32.csv +++ /dev/null @@ -1,132 +0,0 @@ -Range Min;Range Max -0xE400;0xE4FF -DID_NAME;DID ID -rVcDepTre_D_CompositeDID1;0xE400 -yVcAc_B_EvaprVlvReqFrnt;0xE401 -rVcRegCh_D_RegenState;0xE402 -rVcFtivMon_D_FtivState;0xE403 -sVcOilLvl_D_EngOilLvl;0xE404 -yVcTmHcc_B_RadBypassValve;0xE405 -rVcNoxSensMgr_D_UsProbeLnFaultType;0xE406 -rVcNoxSensMgr_t_UsLftCnt;0xE407 -rVcNoxSensMgr_D_DsProbeLnFaultType;0xE408 -rVcNoxSensMgr_t_DsLftCnt;0xE409 -rVcLamDynCcM_t_FinTvLastDly;0xE40A -rVcLamDynCcM_t_FinTvLastSlp;0xE40B -rVcTrsmHeatMon_D_TrsmCtrlAct;0xE40C -rVcTrsmNeuShkMon_D_ShkLogA;0xE40D -rVcTrsmNeuShkMon_D_ShkLogB;0xE40E -rVcTrsmNeuShkMon_D_ShkLogC;0xE40F -rVcTrsmNeuShkMon_D_ShkLogD;0xE410 -sVcTrsmShfShkMon_D_ShfShkCnt;0xE411 -rVcObdCmn_D_OdbCmnCompositeDID1;0xE412 -rVcTempStkM_D_BstSlopeCntDID;0xE413 -rVcTempStkM_D_InAirFlwCntDID;0xE414 -rVcTempStkM_D_InManiFlwCntDID;0xE415 -rVcOilLvl_D_EngOilLvl;0xE416 -rVcTrsmHeatMon_D_TrsmTCM;0xE417 -rVcTrsmNeuShkMon_D_ShkLogE;0xE418 -rVcObdCmnDIDs_D_GeneralCompositeDID1;0xE419 -rVcObdCmnDIDs_D_GeneralCompositeDID2;0xE41A -rVcTqmASpdLimReq_Z_IsdAccum;0xE41B -sVcNoxSensMgr_D_NoxSensUsNOxQual;0xE41C -sVcNoxSensMgr_D_NoxSensDsNOxQual;0xE41D -sVcEdcp_Te_MedTWtrPmpInt;0xE41E -sVcEdcp_Te_MedTWtrPmpInt;0xE41F -rVcDclVu1_D_DclVersion;0xE420 -rVcTqmCSpdLimReq_D_GearSh1And2DID;0xE421 -rVcTqmCSpdLimReq_n_Inp1And2DID;0xE422 -rVcTmEdMon_t_EdCHep7PumpOffTime;0xE423 -rVcTrsmHeatMon_D_TrsmTCM2;0xE424 -yVcEc_B_BrFootOnPedalSafe;0xE425 -sVcEmiGpf_D_SrvRegReqSts;0xE426 -yVcAesTx_B_CmprHPBypReq;0xE427 -sVcAesRx_Z_EChrgrFltFlg;0xE428 -yVcLamAdp_B_ExeTx;0xE429 -yVcLamCtrl_B_ExeTx;0xE42A -yVcAesTx_B_EgrActv;0xE42B -rVcDsePcr_D_LosLogg;0xE42C -rVcVmcPmm_D_EngRunReqLogg;0xE42D -sVcEc_D_HvacCooltVlvStsExt;0xE42E -rVcScrLvl_vol_ScrLvlDidNrcm;0xE42F -rVcScrLvl_vol_ScrLvlDidEcm;0xE430 -rVcScrLvl_vol_ScrLvlDidEcmFlt;0xE431 -rVcDrvInd_D_NrcmFaltArryDid;0xE432 -rVcDrvInd_L_UreaDstRemActDid;0xE433 -rVcDrvInd_Z_UreaCnsDid;0xE434 -rVcDrvInd_L_UreaDstRemDid;0xE435 -rVcNoxSensMgr_D_UsCalid;0xE436 -rVcNoxSensMgr_D_UsVer;0xE437 -rVcNoxSensMgr_D_DsCalid;0xE438 -rVcNoxSensMgr_D_DsVer;0xE439 -rVcTempStkM_D_BstWcacSlopeCntDID;0xE43A -xVcFuelCtrl_B_MemTiCmpl;0xE43B -xVcFuelCtrl_B_FuFilBlkdDetd;0xE43C -sVcScrDpm_Z_DpmSevIdx;0xE43D -rVcDpmsCtrl_D_SootSnsrCVN;0xE43E -rVcDpmsCtrl_D_SootSnsrCALID;0xE43F -sVcEmCo_D_Mode;0xE440 -sVcEmCo_D_BaseMode;0xE441 -sVcEmCo_D_EngSoftPurpose;0xE442 -rVcNoxSensMgr_D_StDsMch;0xE443 -rVcNoxSensMgr_D_StUsMch;0xE444 -rVcNoxSensMgr_D_StUsMchPrv;0xE445 -rVcNoxSensMgr_D_StDsMchPrv;0xE446 -rVcObdDpfDpms_D_CompSootVal;0xE447 -rVcEmCo_D_CompModeDID;0xE448 -xVcObdDps_B_IceRiskFlg;0xE449 -sVcObdDpfDpms_D_DpfDiagSts;0xE44A -sVcObdDpms_D_OoeDiagSts;0xE44B -sVcObdDpms_D_ClgTipDiagSts;0xE44C -rVcDpmsCtrl_D_SootSnsrStsPrv;0xE44D -rVcDpmsCtrl_D_SootSnsrStsFltDet;0xE44E -rVcDpmsCtrl_D_SootSnsrNbrRgns;0xE44F -rVcObdDpms_D_SootSnsrErrSts;0xE450 -rVcObdDpms_D_SootSnsrPrvErrSts;0xE451 -rVcObdDpms_D_GainIumprCnt;0xE452 -rVcObdDpms_D_RgnIumprCnt;0xE453 -rVcObdDpms_D_NbrSootSnsrRstReq;0xE454 -rVcTrsmShfShkMon_D_SumGrShftsGarMod;0xE455 -rVcTrsmShfShkMon_D_SumShkShftsGarMod;0xE456 -rVcTrsmShfShkMon_D_SumGrShftsLoMod;0xE457 -rVcTrsmShfShkMon_D_SumShkShftsLoMod;0xE458 -rVcTrsmShfShkMon_D_SumGrShftsHiMod;0xE459 -rVcTrsmShfShkMon_D_SumShkShftsHiMod;0xE45A -rVcTrsmShfShkMon_D_SumGrShftsTipMod;0xE45B -rVcTrsmShfShkMon_D_SumShkShftsTipMod;0xE45C -rVcTrsmShfShkMon_D_SumGrShftsSpMod;0xE45D -rVcTrsmShfShkMon_D_SumShkShftsSpMod;0xE45E -sVcIhu_D_DrvModReq;0xE45F -rVcRdp_D_DrvValCnd;0xE460 -rVcNoxSensMgr_D_SelfTstUsBufMax;0xE461 -rVcNoxSensMgr_D_SelfTstUsBufMin;0xE462 -rVcNoxSensMgr_D_SelfTstDsBufMax;0xE463 -rVcNoxSensMgr_D_SelfTstDsBufMin;0xE464 -rVcObdDpms_t_TimeSnceSnsrRgn;0xE465 -rVcObdDpms_L_VehDstSnceSnsrRgn;0xE466 -rVcObdDpms_L_ExhDstSnceSnsrRgn;0xE467 -rVcObdDpms_R_GainTstVal;0xE468 -rVcObdDpms_R_GainErrThd;0xE46A -rVcObdDpms_X_RgnTstVal;0xE46B -rVcObdDpms_X_RgnErrThd;0xE46C -rVcObdDpms_t_ClgTipClDwnTi;0xE46D -rVcDclVuMdl_rVcDclVu1_D_DclVersion;0xE46E -rVcNoxSensMgr_D_StMidMchPrv;0xE46F -sVcNoxSensMgr_D_NoxSensMidNOxQual;0xE470 -rVcNoxSensMgr_D_MidProbeLnFaultType;0xE471 -rVcNoxSensMgr_D_MidCalid;0xE472 -rVcNoxSensMgr_D_MidVer;0xE473 -rVcNoxSensMgr_D_SelfTstMidBufMin;0xE474 -rVcNoxSensMgr_D_SelfTstMidBufMax;0xE475 -rVcNoxSensMgr_t_MidLftCnt;0xE476 -rVcLeakMon_D_State;0xE477 -rVcPurgMon_D_SwiftStatus;0xE478 -rVcTrsmTkOffMon_D_JudderShkLogA;0xE479 -rVcTrsmTkOffMon_D_JudderShkLogB;0xE47A -rVcTrsmTkOffMon_D_JudderShkLogC;0xE47B -rVcTrsmTkOffMon_D_JudderShkLogD;0xE47C -rVcTrsmTkOffMon_D_JudderShkLogE;0xE47D -rVcTrsmTkOffMon_D_JudderShkLogF;0xE47E -sVcEdcp_n_CooltPmpAct;0xE47F -rVcVscSl_v_VehMaxVSL;0xE487 -rVcVscSl_D_VehMaxPacked;0xE488 diff --git a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_UInt32.csv b/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_UInt32.csv deleted file mode 100644 index 095a219..0000000 --- a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ConfigDocuments/DIDIds_UInt32.csv +++ /dev/null @@ -1,8 +0,0 @@ -Range Min;Range Max -0xE400;0xE404 -DID_NAME;DID ID -rVcDepTre_D_CompositeDID1;0xE400 -yVcAc_B_EvaprVlvReqFrnt;0xE401 -rVcRegCh_D_RegenState;0xE402 -rVcFtivMon_D_FtivState;0xE403 -rVcLeakMon_D_State;0xE404 diff --git a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ProjectCfg.json b/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ProjectCfg.json deleted file mode 100644 index 9f26928..0000000 --- a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/ProjectCfg.json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "ConfigFileVersion": "0.2.1", - "BaseConfig" : "../../../ConfigDocuments/BaseConfig.json", - "ProjectInfo" : { - "yamlInterface": true, - "projConfig" : "CSP_CATC", - "a2LFileName": "SPM.a2l", - "ecuSupplier" : "CSP", - "ecuType" : "", - "unitCfgDeliveryDir": "./output/UnitCfgs", - "configDir": "ConfigDocuments", - "prjCodeswitches": "CSP_Codeswitch_Setup*.csv", - "commonSrcDir": "../../../Models/Common/pybuild_src", - "prjUnitSrcDir": "../../../Models/*/Vc*/pybuild_src", - "prjUnitCfgDir": "../../../Models/*/Vc*/pybuild_cfg", - "prjUnitMdlDir": "../../../Models/*/Vc*" - }, - "UnitCfgs": "./conf.local/rasters.json", - "includesPaths": [ - "../../../ConfigDocuments/code_to_include/headers/csp", - "../../../matlab-scripts/CustomCode/VcMath/code", - "../../../matlab-scripts/CustomCode/CoreAPI/RBCoreAbstraction/VcCoreSupplierAbstraction.h", - "../../../matlab-scripts/CustomCode/CoreAPI/RBCoreAbstraction/VcRBCoreAdaptor.c", - "../../../matlab-scripts/CustomCode/CoreAPI/RBCoreAbstraction/VcRBCoreAlias.h", - "../../../matlab-scripts/CustomCode/CoreAPI/RBCoreAbstraction/VcRBCoreTmpIdMap.h" - ], - "includedCommonFiles": [ - "Tab1DIntp2I1T438", - "FirstOrderFilterExtraFeatF32", - "Tab1DIntpI1T0", - "Tab1DIntpI1T1", - "Tab1DIntpI1T14", - "Tab1DIntpI1T3", - "Tab1DIntpI1T4", - "Tab1DIntpI1T48", - "Tab1DIntpI1T49", - "Tab1DIntpI1T51", - "Tab1DIntpI1T52", - "Tab1DIntpI1T54", - "Tab1DIntpI1T6", - "Tab2DIntpI1T0", - "Tab2DIntpI1T1", - "Tab2DIntpI1T3456", - "Tab2DIntpI1T3457", - "Tab2DIntpI1T3460", - "Tab2DIntpI1T3462", - "Tab2DIntpI1T385", - "Tab2DIntpI1T4", - "Tab2DIntpI1T576", - "Tab2DIntpI1T577", - "Tab2DIntpI1T6", - "Tab2DIntpI1T902", - "TabIdxS18T0", - "TabIdxS18T1", - "TabIdxS18T3", - "TabIdxS18T384", - "TabIdxS18T385", - "TabIdxS18T387", - "TabIdxS18T388", - "TabIdxS18T390", - "TabIdxS18T4", - "TabIdxS18T6", - "TabIdxS18T72", - "TabIdxS18T73", - "TabIdxS18T75", - "TabIdxS18T76", - "tl_basetypes", - "tl_types", - "SaturationF32", - "LimitInterpolationF32", - "FirstOrderFilterF32", - "SafeDivideF32" - ] -} diff --git a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/conf.local/DeviceDomains.json b/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/conf.local/DeviceDomains.json deleted file mode 100644 index 575002d..0000000 --- a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/conf.local/DeviceDomains.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ihra": "ihra", - "ihfa": "ihfa", - "fioc": "fioc", - "hvbm": "hvbm", - "ccmb": "ccmb", - "hvacsys": "hvacsys", - "hbmf": "hbmf" -} \ No newline at end of file diff --git a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/conf.local/ServiceInterfaces.json b/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/conf.local/ServiceInterfaces.json deleted file mode 100644 index 6df8ba6..0000000 --- a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/conf.local/ServiceInterfaces.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ClimateAndThermalControlInternal": "climate-and-thermal-control-service", - "VehicleModesProvider": "vehicle_modes_provider", - "VehicleMotionState": "vehiclemotionstate-service" -} \ No newline at end of file diff --git a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/conf.local/cs-module.yml b/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/conf.local/cs-module.yml deleted file mode 100644 index 73fdcdb..0000000 --- a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/conf.local/cs-module.yml +++ /dev/null @@ -1,68 +0,0 @@ -id: catc -description: - brief: climate-and-thermal-ctrl - full: Climate and Thermal Control -organisation: ARTCLIMATE, ARTUPTIME, ARTTM -url: https://dummy-gerrit.dummy-domain.biz/plugins/gitiles/dummy-repo/+/master/README.md -source: https://dummy-gerrit.dummy-domain.biz/admin/repos/dummy-repo -asil: QM -tags: - - Design Draft - - Implementation Draft -dependencies: - cs-core: - min-version: 0.0.2 - climate-and-thermal-control-service: - min-version: 0.1.0 - vehicle_modes_provider: - min-version: 6.0.0 - vehiclemotionstate-service: - min-version: 2.3.5 - dp-fioc: - min-version: 6.0.2 - dp-ccmb: - min-version: 0.0.2 - dp-hvacsys: - min-version: 0.0.5 - hal-hvec-thermal-properties: - min-version: 0.1.0 - hal-hvec-electrical-properties: - min-version: 0.1.2 - hal-hvcc-monitor: - min-version: 0.0.2 - # hal-hvcc-requests: - # min-version: 0.0.2 - hal-hlcm-electrical-measurement: - min-version: 1.0.1 - hal-hlcm-system-states: - min-version: 1.0.1 - # electrical_energy_coordinator: - # min-version: 5.0.4 - hal-hvec-contactor-status: - min-version: 0.1.1 - # dp-aqsm: - # min-version: 0.0.2 - -maintainer: - name: John Doe - email: john.doe@volvocars.com -peers: - - name: Aurora Stephenson - email: aurora.stephenson@volvocars.com - - name: Joe Hull - email: joe.hull@volvocars.com - - name: Riley Harrington - email: riley.harrington@volvocars.com - - name: Legacy Rose - email: legacy.rose@volvocars.com -# List of approved architectural debt -# All subfields are mandatory, and there must be at least one approver listed for each debt -architectural-debt: - - description: Some handy description. - motivation: > - Some handy motivation, with a bit more text. - Let's make it multiline. This is the second line. - And this is the third. Why not? - approvers: - - name: Noah Harper - email: noah.harper@volvocars.com diff --git a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/conf.local/project_defaults.txt b/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/conf.local/project_defaults.txt deleted file mode 100644 index a73803c..0000000 --- a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/conf.local/project_defaults.txt +++ /dev/null @@ -1,7 +0,0 @@ - -# Configuration to pick in SPM_Releaseswitch_Setup -ProjName=CSP_Thermal -branchName=Trunk - -MAKE_ENVIRONMENT_NAME=RB_MG1CS080_2B_B47_00Q000p -POWERWEAVER_IF_VERSION=35 diff --git a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/conf.local/rasters.json b/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/conf.local/rasters.json deleted file mode 100644 index 67959b8..0000000 --- a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/CATC/conf.local/rasters.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "SampleTimes": { - "VcExt50ms": 0.05, - "VcExt100ms": 0.1, - "VcExt1000ms": 1.0 - }, - "VcExt50ms": [ - "VcAcMRx", - "VcTestRx", - "VcAcHmiRx", - "VcAcHmiState", - "VcAcHmiTx", - "VcTestTx" - ], - "VcExt100ms": [ - "VcCcCmfRec", - "VcCcHvcTStatFil", - "VcCcCmfSpEvp", - "VcAcMSysPrtn", - "VcCcSnsrTx", - "VcAcSlim", - "VcAcRx", - "VcAcMPOffs", - "VcAcMTOffs", - "VcAcFan", - "VcAcMChillrExVlv", - "VcAcMEvapFr", - "VcAcMEvapChillr", - "VcAcMEvapFrChillr", - "VcAcModMgr", - "VcCcCmfTx", - "VcAcMExVlv", - "VcAcEgyMgr", - "VcAcLim", - "VcAcHtgMdlHex", - "VcCcHvcRx", - "VcCcHvacCtrl", - "VcCcHvcTActrCtr", - "VcCcHvcTAvg", - "VcCcHvcTSur", - "VcCcHvcTx", - "VcAcChillerExv", - "VcAcCmprCtrl", - "VcAcVlvCtrl", - "VcAcTx", - "VcCcCmfRx", - "VcTdTOffsM", - "VcTdSigHub", - "VcTcRx", - "VcTcAirFlow", - "VcTcCooltSysCtrl", - "VcTcEgyMgr", - "VcTcThermEstimn", - "VcTcThermCoorr", - "VcTcThermReq", - "VcTcVem", - "VcTdCptM", - "VcTdEdTStkM", - "VcTdCmptmtTStkM", - "VcTdHvBattTStkM", - "VcTdEdVlvM", - "VcTcTx" - ], - "VcExt1000ms": [ - "VcCcCmptRx", - "VcCcCmptEr", - "VcCcCmptTx" - ] -} diff --git a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/hal_list.yaml b/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/hal_list.yaml deleted file mode 100644 index 2fab253..0000000 --- a/tests/powertrain_build/cnfg_files/test-repo/Projects/CSP/hal_list.yaml +++ /dev/null @@ -1,8 +0,0 @@ -hal-hvec-thermal-properties: HVECThermalPropertiesHal -hal-hvec-electrical-properties: HVECElectricalPropertiesHal -hal-hvcc-monitor: HighVoltageChargingMonitorHal -hal-hvcc-requests: HighVoltageChargingRequestsHal -hal-hlcm-electrical-measurement: HighVoltageDcDcConverterElectricalMeasurementHal -hal-hlcm-system-states: HighVoltageDcDcConverterSystemStatesHal -hal-hvec-contactor-status: HVECContactorStatusHal - diff --git a/tests/powertrain_build/test_signal_interfaces_yaml.py b/tests/powertrain_build/test_signal_interfaces_yaml.py index 0133e4b..0dfbd19 100644 --- a/tests/powertrain_build/test_signal_interfaces_yaml.py +++ b/tests/powertrain_build/test_signal_interfaces_yaml.py @@ -8,11 +8,11 @@ from pathlib import Path from powertrain_build.signal_interfaces import YamlSignalInterfaces -BASEDIR = Path(__file__).parent / "cnfg_files/test-repo" +BASEDIR = Path("test_data/test_repo").resolve() CSP_PROJECT_ROOT = BASEDIR / "Projects/CSP/CATC" -EXTERNAL_INPUT_SIGNAL = "sVcFioc_Te_AmbTMecRimSnsr" -EXTERNAL_OUTPUT_SIGNAL = "yVcTestTx_B_CircCnctVlvReq" +EXTERNAL_INPUT_SIGNAL = "yVcVmp_B_VehModConv" +EXTERNAL_OUTPUT_SIGNAL = "sVcTestTx_X_AirFlapPosnReqForDefrst1" EXTERNAL_INPUT_MODEL = "VcTestRx" EXTERNAL_OUTPUT_MODEL = "VcTestTx" diff --git a/zuul.d/jobs.yaml b/zuul.d/jobs.yaml index 8e8587e..d25f717 100644 --- a/zuul.d/jobs.yaml +++ b/zuul.d/jobs.yaml @@ -15,3 +15,17 @@ - name: blackduck_secret secret: blackduck nodeset: ubuntu-jammy + +- job: + name: powertrain-build-and-compile + description: | + Job that compiles code collected/created by powertrain-build in a test repo. + + vars: + venv_folder: .pyenv + test_projects: + - name: CATC + project: CSP/CATC + - name: LVCSC + project: ZC/ZCLA_LVCSC + run: playbooks/powertrain-build-and-compile.yaml diff --git a/zuul.d/projects.yaml b/zuul.d/projects.yaml index 83f4974..f990337 100644 --- a/zuul.d/projects.yaml +++ b/zuul.d/projects.yaml @@ -3,6 +3,7 @@ jobs: - noop - powertrain-build-tox + - powertrain-build-and-compile gate: jobs: - noop