800 likes | 1.01k Views
Introduction to Software Project Estimation I (Overview). Barry Schrag Software Engineering Consultant MCSD, MCAD, MCDBA barryschrag@hotmail.com. What Are Your Expectations. From this class?. Introductions. Your background Reason for taking this workshop
E N D
Introduction to Software Project Estimation I (Overview) Barry Schrag Software Engineering Consultant MCSD, MCAD, MCDBA barryschrag@hotmail.com
What Are Your Expectations • From this class?
Introductions • Your background • Reason for taking this workshop • An unusual fact to remember you by!
What we will learn This course focuses on an overview of Software Estimation knowledge to include the tools, techniques, and key concepts used in estimating size and effort on software projects. Class content, including hands-on exercises, is designed to provide team members and Project Managers with resources and skills to more accurately apply estimating techniques at various points in a software engineering process and how to interpret the result, reducing risk during the software engineering effort. Prerequisite: Experience in the field of software engineering or project management, or relevant coursework/knowledge.
Info • Breaks • Food • Facilities
Workshop Format • Introduction • Exercise without tools • Break • Lines of Code Lesson • Function Point Lesson • Exercise applying Function Point technique • Break • Lessons learned
Software Project Definitions • Successful: • The project is completed on time and on budget, with all features and functions as specified • Challenged: • The project is completed and operational, but over budget, late, and with fewer features and functions that initially specified • Failed: • The project is cancelled before completion, never implemented, or scrapped following installation
Project Success is Rare • 2004: 15% failed, 51% challenged, 34% succeeded • 2000: 23% failed, 49% challenged, 28% succeeded • 1995: 40% failed, 33% challenged, 27% succeeded • 1994: 31% failed, 53% challenged, 16% succeeded Source: Randy Miller, Microsoft
Overview • Why care about estimates? • Repeatability • Accuracy to a date • Manage resources and cost • FP standards group says: +-4% 12% • LOC estimation error is history dependent +- 200% down to +-5% with PSP/PROBE
What is an "estimate" ? • Our Premise: Effort in hours from size • More accurate for your team/process • Do engineers estimate? Do architects? Do scientists? • Size Effort hours Schedule
Cone of Uncertainty • It is very large during requirements • It gets smaller as you proceed through yourprocess!
Scenario I • Read Exercise 1 Initial Estimate • Solidify any questions and assumptions • Can you make an initial estimate in hours? If not, make a guess! • If you can, estimate how many defects there will be
Results • What were your estimates? • What tools would you use to perform this task?
Organization Is there IT Support? What is their current and projected load? Engineering team in place? Engineering Methodology System Specs OS Platform Architecture Backend Database/File System, etc… Calculation rule specifics? Report output method /Architecture in place? Retention rate of data? Quality Specification Performance? Concurrency? Sales Lead time Pipleline already full? Project Management Supplier lead time Partner co-operation Partner dependencies Some facts help in estimation
What quality is required How many defects are acceptable after release? How many defects do we need to find? What is our team size What is our team productivity (do we know?) How many hours is the team is available to work on this project per day? 6? 8? 10? Are vacation days scheduled? Important for Estimation
An Estimator uses • Product Specs (size only) • Team Size (size effort) • PSP uses a team size of 1 • Hours available per day for work (effort schedule) • Days off (effort schedule)
The Cone of Uncertainty • What does it look like? • What percent of software projects are on time and on budget? 29% • Where does estimation error come from? Guessing Historical Analysis
Estimation Error • Unknown specs account for 33% of error (McConnell 2006) • Lost project hours account for error on schedule estimation, not size estimation • Remember Size leads to Effort leads to Schedule
Scope Creep • 2% increase per calendar month in design and coding phases (McConnell 2006) • From end of requirements to start of coding phases chart: (Capers Jones, 2002)
Estimation Formula • Effort in hours • Size of Specs • Size of Team • How do we find the size of specs? • Only two ways accepted as better than guessing! • Function Points • Lines of Code using PROBE in the PSP
Line of Code Definitions • KLOC (thousands) • SLOC (source) • LOC • CLOC (commented) • NCLOC (non commented)
System Size: Lines of Code • Review Table 1 • The Paradox of Source Code Metrics • Read Reading 1 • Lines of Code as a metric • Read Reading 2 • A Few Words about the PSP and PROBE
LOC PSP/PROBE defects • A benefit of this method: • 30-100% of defects can be found before first compile!
LOC Has Problems! • No theoretical foundation • No relationship between lines of code and program operation • C = A+B; • C = *A + *B; • Complexity and errors can increase with equal LOC
System Size: Lines of Code • There is no standard way to measure • Wide range of estimates for a language • Visual Basic 15 to 41 LOC! • LOC counts can be easily misinterpreted and misused. • Don’t mix LOC counts from different languages and types of code (i.e. test support, product etc…) • You can generate almost any productivity number you want by changing the way you count LOC. • Tools? Code Counter Pro • Can estimate ratio of Comment Lines per SLOC
Break Be back in …. Next up Function Points
System Size: Function Points • 1979, A.J. Albrecht of IBM published a Function Point metric as a ‘measure of software productivity’ or unit of work.
An Ideal Size Measure Should • Be Measurable • Be Accountable • Be Precise • Be Independent of the measurer
System Size: Function Points • Albrecht considered five operations • The inputs to the application • The outputs from it • Inquiries by users (define user) • The data files that would be updated by the application • The interfaces to other applications
The generic application Application Output simple data Data values in Output Calculated data Data store
Modern Function Points • After research, empirical weighting factors became a standard • The number of inputs was weighted by 4 • The Outputs by 5 • Inquiries by 4 • The data file updates by 10 • The interfaces by 7 • These weights change based on number of data fields used by each operation
System Size: Function Points • IFPUG (International Function Point Users Group) • FP ISO 20626:2003 www.ifpug.org • COSMICON (COmmon Software Measurement International CONsortium) • FFP ISO/IEC 19761:2003 http://www.cosmicon.com • FP measures size of an operation not the direct complexity of algorithms • Abstracted from language or implementation
FP Defect Rates are Known DEFECT ORIGINS Per FP • Requirements 1.00 • Design 1.25 • Coding 1.75 • Documentation 0.60 • Bad Fixes 0.40 • TOTAL 5.00
Generic Application Data values inExternal Input Application Output simple data Output Calculated data Data store (Internal Logical Files)
External Outputs (EO) • An elementary process in which derived data passes across the boundary from inside to outside the application • A report where data is calculated is an example • For elaborated definition see Glossary
External Inputs (EI) • Is an elementary process in which data crosses the boundary from outside to inside the application • For elaborated definition see Glossary
External inQuiry (EQ) • An elementary process with both input and output components that result in data retrieval from one or more internal logical files and external interface files • A report where data is pre-calculated is an example • For elaborated definition see Glossary
Internal Logical Files (ILF) • A group of logically related data within the application boundary • Storage location for the users profile, for product, system control info… • For elaborated definition see Glossary
External Interface Files (EIF) • Data used for reference purposes which resides entirely outside the application and is maintained by another application • This is an Internal Logical File for another application • For elaborated definition see Glossary
EQ and EO • IFPUG is very clear on the difference between EQ and EO • EQ should NOT update an ILF, no derived data is created and NO formula or calculations should be performed i.e. an EQ is only a query • May require a certified FPA to be sure!
Note About Terms • There may be more than one of ANY of the 5 FP operations • Often more than one ILF in even the smallest project • Imagine one ILF for Users, another for Invoice, Products, System Control data
FPA Exercise (Exercise I) We want to build an internet based system which signs up users who want service. The system will record the user information. It will look up the service price for the monthly payment and display this to the user before they approve. It will use the payment rates which are held in a legacy system. Once this payment is calculated, it is stored with the users data and is not re-calculated again. The system must provide two reports; 1) a monthly report which details the invoice for the user, and 2) an on-demand report for management which aggregates the projected income across all signed up users for the monthly period
Exercise I – How Many? • Match these concepts to the exercise • ILF (Internal Logical Files) • EIF (External Interface Files) • EI (External Input) • EO (External Output) -- calculated • EQ (External inQuiry) -- just a query
Exercise I - Calculate FP Count • The number of External Inputs __*4= __ • The External Outputs __*5= __ • External inQuiries __*4= __ • The Internal Logical Files __*10= __ • The External InterFaces __*7= __ TOTAL FP Estimate = __ TOTAL Defects Estimate = FP * 5 = __
Exercise I - Calculate FP Count • The number of External Inputs 2*4= __ • The External Outputs 2*5= __ • External inQuiries 2*4= __ • The Internal Logical Files 1*10= __ • The External InterFaces 1*7= __ TOTAL FP Estimate = __ TOTAL Defects Estimate = FP * 5 = __
Exercise I - Calculate FP count • The number of External Inputs 2*4= 8 • The External Outputs 2*5=10 • External inQuiries 2*4= 8 • The Internal Logical Files 1*10= 10 • The External InterFaces 1*7= 7 TOTAL FP Estimate = 43 TOTAL Defects Estimate = FP * 5 =215