How to Calculate Actual Draft by C Programming

Last Updated on 29/12/2020

Experiment name:
Write a program to calculate actual draft by using C programming language.

INTRODUCTION:
Spinning is the process of yarn manufacturing from fiber. During yarn manufacturing various machines are involved in the production namely blow room, carding, comber, draw frame, simplex, and ring frame. Calculations play a very crucial role during the yarn manufacturing. Draft is widely used in spinning calculation. There are two draft in spinning calculation; actual draft and mechanical draft. Actual draft = Weight per yardfed/wt. per yard delivered Mechanical draft (is calculated from gearing) is determined, by use of the actual draft (required) and waste%. So, Mechanical draft is always less than actual draft. From this experiment I will find out how to calculate actual draft by using C programming language.

actual draft calculation

Introducing with programme in “C” demands some initial computer knowledge to be known. We have to start with some necessary conceptions of computer programming language and systems provided for “C” programming.

OBJECTIVES:

  1. To know the computer language .
  2. To learn how to work with ‘C++’
  3. To cope with ‘C’ programming.

DESCRIPTION OF SOME CODE USING IN PROGRAMMING LANGUAGE:

printf( )=To display a command in monitor.

Void=Not to return the value from one function.

getch( )=To hold the value in the monitor until getting any response from programmer.

/n =To show contents in multiple line .

/t =To show contents in each pages with connection.

stdio.h = For adding header file and to input the printf ( ) programming code in the computer.

TO DISPLAY A TEXT ON A SCANER:

#include<stdio.h>
#include<conio.h>
void main( )
{
clrscr( );
float A_draft,DC,DCP,waste,T_draft;
printf(“Enter DC,DCP,present waste=”);
scanf(“%f%f%f,& DC,&DCP,&waste”);
T_draft=DC/DCP
A_draft=(T_draft*100)/(100-waste);
Printf(“nn Actual draft=%0.2f”,A_draft);
getch( );
}

CONCLUSION:
Programming in “C” is very essential for programming. This is a vital experiment for us. I hope this experiment is very helpful in our practical life in future.

By-
S. M. Hossen Uzzal
Production Officer
Monno Fabrics Ltd., Manikgonj
Email: uhossen@gmail.com

Share this Article!

Leave a Comment