Commit 8f945cb4 authored by wattelet's avatar wattelet
Browse files

DENM Update

parent 7cd5436f
Loading
Loading
Loading
Loading
+61 −1
Original line number Diff line number Diff line
@@ -634,7 +634,7 @@ module LibItsDenm_Templates {
    group alacarteTemplates {
        
        /**
         * @desc    Send template for Alacarte Container including lane count
         * @desc    Send template for Alacarte Container including lanePosition
         */
        template (value) AlacarteContainer m_alacarteConLaneCount := {
            lanePosition := 0,
@@ -645,6 +645,66 @@ module LibItsDenm_Templates {
            stationaryVehicle := omit
        }
         
        /**
         * @desc    Send template for Alacarte Container including impactReduction
         */
        template (value) AlacarteContainer m_alacarteConImpactReduction := {
            lanePosition := omit,
            impactReduction := m_impactReduction,
            externalTemperature := omit,
            roadWorks := omit,
            positioningSolution := omit,
            stationaryVehicle := omit
        }
        
        /**
         * @desc    Send template for ImpactReduction Container
         */
        template (value) ImpactReductionContainer m_impactReduction := {
            heightLonCarrLeft			:= 100,
            heightLonCarrRight			:= 100,
            posLonCarrLeft				:= 127,
            posLonCarrRight 			:= 127,
            positionOfPillars 			:= { 30 },
            posCentMass					:= 63,
            wheelBaseVehicle			:= 127,
            turningRadius				:= 255,
            posFrontAx					:= 20,
            positionOfOccupants			:= '00000000000000000000'B,
            vehicleMass					:= 1024,
            requestResponseIndication	:= request
        }
         
        /**
         * @desc    Receive template for Alacarte Container including impactReduction
         */
        template (present) AlacarteContainer mw_alacarteConImpactReduction := {
            lanePosition := *,
            impactReduction := mw_impactReduction,
            externalTemperature := *,
            roadWorks := *,
            positioningSolution := *,
            stationaryVehicle := *
        }
        
        /**
         * @desc    Receive template for ImpactReductio nContainer
         */
        template (present) ImpactReductionContainer mw_impactReduction := {
            heightLonCarrLeft			:= ?,
            heightLonCarrRight			:= ?,
            posLonCarrLeft				:= ?,
            posLonCarrRight 			:= ?,
            positionOfPillars 			:= ?,
            posCentMass					:= ?,
            wheelBaseVehicle			:= ?,
            turningRadius				:= ?,
            posFrontAx					:= ?,
            positionOfOccupants			:= ?,
            vehicleMass					:= ?,
            requestResponseIndication	:= response
        }
        
    } // end alacarteTemplates
    
} // end LibItsDenmTemplates
 No newline at end of file