22
1 Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, 2007

Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

  • Upload
    vuthuy

  • View
    217

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

1

Spreadsheet Based Model Test

Weiqian SunChristopher Davey

Ford Motor CompanyJune 20, 2007

Page 2: Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

2

Acknowledgements

• Dan Card• Doug Rosner• Saied Rasavilar• Jason Marx

Page 3: Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

3

Outline• Software Systems Engineering Challenges

– Complexity Growth– Software Defect Distribution

• Model Based Development Process/Activities

• Excel Test Design and Model Environment– Model Elements– Test Sequence Design– Test Sequence Visualisation

• Conclusions

Page 4: Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

4

Software System Challenges• Electronics/software

– 20% of vehicle cost today– 35-40% by year 2010– 90% new innovations from software

• System Complexity~40-70 Micro-Processors and >10 million lines of code

• High Cost of Development– Automakers spend $2 billion to $3 billion a year fixing software

problems, (Starvros Stefanis, IBM)

Page 5: Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

5

Software System Challenges

Escaped Software Defects Distribution

0

500

1000

1500

2000

2500

3000

Requirements Design andImplementation

Integration Aftermarket

Defect Category

Num

ber o

f Def

ects

Number/Distribution of Defects

• Ford North America Defect Distribution Data

• Gary Mogyorodi (2003) quoted study

• Requirements related defects represent >50% of all software defects (Ford defect data aligns with industry published data)

Page 6: Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

6

RequirementCapturing

RequirementCapturing

SpecificationSpecification

DesignDesign

ImplementationImplementation

Unit TestUnit Test

Integration &Functional TestIntegration &

Functional Test

System TestSystem Test

• Distinct 4 phases– Requirement and Spec– Design– Implementation– Test and Verification

• Weakness: Document centric– Incomplete,– Ambiguous,– Easily misunderstood– Late Feedback/Slow Iteration

Tranditional Development Process/Activities

Page 7: Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

7

Model Based Development Process/Activities

Model Based System Engineering

– Documents functional requirements using block diagrams, state charts and flow diagrams to create an easily readable/understandable requirements model

– Enables simulation in a virtual environment to study correctness, completeness and suitability of documented requirements to Customer usage needs

– Provides the ability to generate test and automatically execute for use in requirements validation and re-usable within HiL test environment

– Supports Rapid Prototyping of innovative features\new technologies in both a purely virtual environment or a progressively real-world, target hardware environment.

– Generates “error-free” target software automatically and enables validation testing of code re-using full coverage test scripts

Major Benefits

– Early identification and elimination of requirements defects – Early discovery and mitigation of Software related failure modes– Complete, easily understood and simulatable requirements specification– Supports the Electronic Consumer Lifecycle with fast development cycles with major

re-use of models & test vectors– Enables re-use of requirements, test vectors, models and software

Page 8: Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

Model Based Design – Systems/Holistic Approach

Requirements

1. Model Based Requirements Management.

Architecture

Design

Detailed Design

Implementation

Unit Test

Sub-SystemTest

System Test

Vehicle Level Test

2. Architecture Models

3. Design Models(Behavioral Models)

4. Detailed Design Models (Implementation Models)

8. Sub-System HiL

9. System HiL

5. Test Vector Generation & Re – Use

6. Autocode

MiL

SiL

HiL7. Component

/Feature HiL

MiL – Model in the LoopSIL – Software In the LoopHIL – Hardware In the Loop

ImmoSubTarget1Ctrl<<Out>> ImmoAuthSubUnit1Resp

<<In>> ImmoAuthSubUnitsReq()

ImmoSubTarget2Ctrl<<Out>> ImmoAuthSubUnit2Resp

<<In>> ImmoAuthSubUnitsReq()

ImmoSubTarget3Ctrl<<Out>> ImmoAuthSubUnit3Resp

<<In>> ImmoAuthSubUnitsReq()

ImmoMainTargetCtrl

ImmoMainCtrl

Page 9: Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

9

Excel-Model Test Environment

Masked Subsystem

• Masked Subsystem uses Excel Workbook datato create Signal Builder visualization utilizingM-Script Callbacks

Featureunder Test

14

3

Excel Workbook: Test Cases

Test Step

Test Sequence

Signal Builder: Visualisation

TestConditions

Test Harness 2

Test Groups

Page 10: Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

10

Feature Model LibraryContext Diagram

– Input/Output Signals, Tunable Parameters andData Definitions

OutputSignal 22

OutputSignal 11

Init File :Myfeat_Setup.m

Feature0_STD

InputSignal1

InputSignal2

InputSignal3

Switch_Cfg

HoldTm_Cfg

OutputSignal 1

OutputSignal 2

HoldTm _ Cfg = 1 . 500

Switch _ Cfg InputSignal 3

3 InputSignal 2

2 InputSignal 1

1

Page 11: Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

11

State Transition Diagram

S1 en: OutputSignal1 = ... OUTPUTSIGNAL1_ON; lclTmr = GetTime();

S2en: OutputSignal2 = ... OUTPUTSIGNAL2_ON;

[InputSignal3 == Switch_Cfg]1

2 {OutputSignal2 = ... OUTPUTSIGNAL2_OFF;}

[CalTime(lclTmr)>HoldTm_Cfg]{OutputSignal1 = ... OUTPUTSIGNAL1_OFF;}

• Enumerated signals must be supported• Timer vs. Counter Ford-EESE user preference

Page 12: Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

12

Model Data

• Setup model data with M-File%% Input%InputSignal1INPUTSIGNAL1_OFF = 0;INPUTSIGNAL1_ON = 1;…%% Config…HoldTm_Cfg = 1.5; %sec…

Page 13: Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

13

Traditional Spec:Decision Table

Feature Model:Stateflow® Chart

Decision Table

• Multi-valued truth table support would reduce the modeling workload

Page 14: Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

14

Full Requirements Traceability

• Traceability to/from Word, Excel,Team Centre Systems Engineering (TCsE), …

Page 15: Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

15

Test Harness

TestSeq:Masked Subsystem Block

Page 16: Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

16

Test in SpreadsheetIn

putS

igna

l1

Inpu

tSig

nal2

Inpu

tSig

nal2

Tim

e

Out

putS

igna

l1

Out

putS

igna

l1

Com

men

t

OFF OFF FALSE step OFF OFF Rqmt3.2.1, this is init conditionON OFF TRUE step ON OFF Rqmt3.2.2, change from state 1 to state 2ON OFF FALSE step OFF ON …

ON OFF TRUE <HoldTm_Cfg> - stepOFF OFF …ON ON TRUE 2 ON ON Rqmt3.2.5, Reach final steady state

• Absolute time in seconds

• Configured Time Constant• Enumerated Types

• Boolean Types• Adjustable sample Time

Page 17: Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

17

Test Signal• Excel based test sequences are easily visualisedwithin the standard Signal Builder

Page 18: Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

18

Test Conditions#SampleTime=0.25 Change default time step size, the unit is

second.

#OutputSignalPrefix = e_ Add a prefix string to output signals. This support test recording of both expected and model output signals.

#Interpolate=[1 0 1] By default all signals are treated as type of zero order of hold between sample times. With this option, one can specify a ‘1’ for linear interpolation (FOH) or ‘0’ for ZOH.

Specify M command or script to run before the start of simulation for the test sequence. This is useful for assigning parameter and initial values for model data.

#StartScripts = 'Switch_Cfg = SWITCH_CFG_OPT2'

Page 19: Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

19

Simulation Condition• Setups using checkbox

– Simulation stop at the end of signal definition

– Automatic solver/step size per group– Automatic block sampletime per group– Permit test group start script

• Support use of multiple TestSeq blocks

Page 20: Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

20

Coverage Report•Traditional Spec: Verify design by simply reviewing spec

•Feature Model: Review Model Coverage Report

•Coverage:•Decision•Condition•MCDC•Range•Lookup Table

•Test generation is an iterative process until desired coverage is reached

Page 21: Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

21

Conclusion• Model Based Feature Design:

– Can provide a faster, more complete and re-useable development environment

• Excel Based Test Design:– Builds on existing engineering tools, methods and processes– Provides test vector authoring capability within legacy tools– Enables efficient adoption of model based toolsets by less

experienced users

• Next Steps:– Encourage The MathWorks to integrate these capabilities into

their toolset – Pursue greater integration between their existing tools

Page 22: Spreadsheet based model test - MathWorks - Makers of … · Spreadsheet Based Model Test Weiqian Sun Christopher Davey Ford Motor Company June 20, ... • Excel Test Design and Model

22

Q&A