var fDesc=new Array(); fDesc[0] = "Cocomo is a model designed by Barry W. Boehm to give an estimate of the number of man months it will take to develop a software product. This "COnstructive COst MOdel" is based on a study of about 60 projects at TRW. The programs used for this development work ranged from 2000 to 100.000 lines of code, and programming languages used range from assembly to PL/I. Cocomo consists of a hierarchy of 3 increasingly detailed and accurate forms.

These three types of Cocomos are Basic, Intermediate and Advanced. On the three small paragraphs below these models are shortly describied.

Basic Cocomo calculates projects size just based on the lines of code. This model does not have any settable parameters like talents of designers for example. This model is supported by this program, when all settings are set to normal.

Intermediate Cocomo have several settable parameters, which can be used to make the calculation of the size of the project more realistic. See from the program the settings page. These settings are called cost drivers.

Advanced Cocomo (not supported by this software) incorporates all characteristics of the intermediate version with an assessment of the cost driver's impact on each step (analysis, design, etc.) of the software engineering process"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }