Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

STEP 1: Create a Multifile Project Objective: Create a C++ console application t

ID: 3636574 • Letter: S

Question

STEP 1: Create a Multifile Project


Objective: Create a C++ console application that will model the characteristics of a resistor.

Create a multifile project. Create and add to the project an h file containing the resistor-class definition.
Create and add to the project a cpp file containing the implementation of the class-member functions.
Create and add to the project a ccp file containing the main() function, which will instantiate a resistor object and test its member functions.


STEP 2: Required Class Members


The resistor class will, at minimum, have members that do the following.

store the nominal resistance value of a resistor
store the tolerance of a resistor
initialize any and all nominal-resistance values to correct, EIA, nonzero values that are greater than 0 and less than 1,000,000 ohms
initialize any and all resistance-tolerance values to correct, E12, E24, E48, or E96 resistance-tolerance values
allow the nominal-resistance and tolerance values of a resistor object to be changed by the user
All member functions should have a test message stating the name of the function. All the test messages should be displayed or not displayed, depending on the value of a Boolean variable declared in main().
If the Boolean value = true, display the message.
If the Boolean value = false, do not display the message.

STEP 3: Program Operations


Function main() should instatiate two objects of class resistor.

Function main() should display the current values of all resistor objects.

Function main() should also calculate and display the minimum and maximum in-tolerance resistance values of each resistor object from the resistor data members.

Function main() should allow the user to change the values of the nominal resistance and the resistor tolerance of both resistor objects, and it should also correctly handle out of numeric-range input. Main() is also responsible for making sure that the user can successfully enter only correct, EIA resistance and tolerance values.

The user should be given the following data-entry choices:
accept current EIA values for resistance and tolerance;
The function main() should display the new, modified values of the resistor object, including the new min and max in-tolerance resistance values.

The function main() should be executed twice: once with the test messages displayed and once without.


STEP 4: Lab Questions


You are not required to copy the question text into your document, but all answers should be listed with the question number they answer.

List the complete reference-source information for where you found the EIA standard resistor value and tolerance information.
How was this reference discovered and where?
The constructor requires the initialization values for the nominal resistance and the tolerance when an object is instantiated to be a correct E-series resistance and tolerance combination. Describe how this was accomplished in your program design and implementation.
In the lab, you were required to provide mutator functions to change the nominal-resistance and tolerance values of a resistor object.
Describe how this was accomplished so that the user could not enter an invalid nominal-resistance and E-series tolerance combination.
Describe how this process was different and/or similar to how you implemented this validation in the class constructor.



Explanation / Answer

#include<iostream>
using namespace std;
class Resistor
{
double nominalResistance;
double tolerance;
public:
Resistor(void);

//initialize any and all nominal-resistance values to correct, EIA, nonzero values that are greater than 0 and less than 1,000,000 ohms
//initialize any and all resistance-tolerance values to correct, E12, E24, E48, or E96 resistance-tolerance values

Resistor(double,double);
//allow the nominal-resistance and tolerance values of a resistor object to be changed by the user
void setNominalResistance(double,bool);
void setTolerance(double,bool);

double getNominalResistance(bool);
double getTolerance(bool);
~Resistor(void);
};

#include "Resistor.h"


Resistor::Resistor(void)
{
}


Resistor::~Resistor(void)
{
}

Resistor::Resistor(double nomRes,double tol)
{
nominalResistance=nomRes;
tolerance=tol;
}
void Resistor::setNominalResistance(double nomRes,bool value)
{
if(value)
{
cout<<endl<<"Method setNominalResistance()";
}
nominalResistance=nomRes;
}
void Resistor::setTolerance(double tol,bool value)
{
if (value)
{
cout<<endl<<"Method setTolerance()";
}
tolerance=tol;
}
double Resistor::getNominalResistance(bool value)
{
if(value)
{
cout<<endl<<"Method getNominalResistance()";
}
return nominalResistance;
}
double Resistor::getTolerance(bool value)
{
if(value)
{
cout<<endl<<"Methos getTolerance()";
}
return tolerance;
}

//The function main() should display the new, modified values of the resistor object, including the new min and max in-tolerance resistance values.
cout<<"Nominal Resistance for res1 : "<<res1.getNominalResistance(test);
cout<<endl<<"Tolerance for res1 : "<<res1.getTolerance(test);
cout<<endl<<"Nominal Resistance for res2 : "<<res2.getNominalResistance(test);
cout<<endl<<"Tolerance for res2 : "<<res2.getTolerance(test);
if(res1.getTolerance(test)<res2.getTolerance(test))
{
cout<<endl<<"Minimum tolerance : "<<res1.getTolerance(test);
cout<<endl<<"Maximum tolerance : "<<res2.getTolerance(test);
}
else
{
cout<<endl<<"Minimum tolerance : "<<res2.getTolerance(test);
cout<<endl<<"Maximum tolerance : "<<res1.getTolerance(test);
}

//The function main() should be executed twice: once with the test messages displayed and once without.
test=false;
//Function main() should instatiate two objects of class resistor.
//Resistor res1(1,.1), res2(2,.2);
//Function main() should display the current values of all resistor objects.
cout<<"Nominal Resistance for res1 : "<<res1.getNominalResistance(test);
cout<<endl<<"Tolerance for res1 : "<<res1.getTolerance(test);
cout<<endl<<"Nominal Resistance for res2 : "<<res2.getNominalResistance(test);
cout<<endl<<"Tolerance for res2 : "<<res2.getTolerance(test);
//Function main() should also calculate and display the minimum and maximum in-tolerance resistance values of each resistor object from the resistor data members.
if(res1.getTolerance(test)<res2.getTolerance(test))
{
cout<<endl<<"Minimum tolerance : "<<res1.getTolerance(test);
cout<<endl<<"Maximum tolerance : "<<res2.getTolerance(test);
}
else
{
cout<<endl<<"Minimum tolerance : "<<res2.getTolerance(test);
cout<<endl<<"Maximum tolerance : "<<res1.getTolerance(test);
}
//Function main() should allow the user to change the values of the nominal resistance and the resistor tolerance of both resistor objects, and it should also correctly handle out of numeric-range input. Main() is also responsible for making sure that the user can successfully enter only correct, EIA resistance and tolerance values.

//The function main() should display the new, modified values of the resistor object, including the new min and max in-tolerance resistance values.
cout<<"Nominal Resistance for res1 : "<<res1.getNominalResistance(test);
cout<<endl<<"Tolerance for res1 : "<<res1.getTolerance(test);
cout<<endl<<"Nominal Resistance for res2 : "<<res2.getNominalResistance(test);
cout<<endl<<"Tolerance for res2 : "<<res2.getTolerance(test);
if(res1.getTolerance(test)<res2.getTolerance(test))
{
cout<<endl<<"Minimum tolerance : "<<res1.getTolerance(test);
cout<<endl<<"Maximum tolerance : "<<res2.getTolerance(test);
}
else
{
cout<<endl<<"Minimum tolerance : "<<res2.getTolerance(test);
cout<<endl<<"Maximum tolerance : "<<res1.getTolerance(test);
}
system ("pause");
return 0;
}