081108-Stress Analysis of A Circular Plate

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 18

081108-STRESS ANALYSIS OF A CIRCULAR PLATE

081108-STRESS ANALYSIS OF A CIRCULAR PLATE

081108-STRESS ANALYSIS OF RECTANGULAR BRACKET

081108-STRESS ANALYSIS OF RECTANGULAR BRACKET

081108-STRESS ANALYSIS OF AXISYMETRIC COMPONENT

081108-STRESS ANALYSIS OF AXISYMETRIC COMPONENT

081108-STRESS ANALYSIS OF CANTILEVER BEAM

081108-STRESS ANALYSIS OF CANTILEVER BEAM

081108-STRESS ANALYSIS OF CANTILEVER BEAM

081108-STRESS ANALYSIS OF A SIMPLY SUPPORTED BEAM WITH UDL

081108-STRESS ANALYSIS OF A SIMPLY SUPPORTED BEAM WITH UDL

081108-STRESS ANALYSIS OF A SIMPLY SUPPORTED BEAM WITH UDL

081108-STRESS ANALYSIS OF FIXED END WITH POINT LOAD

081108-STRESS ANALYSIS OF FIXED END WITH POINT LOAD

081108-STRESS ANALYSIS OF FIXED END WITH POINT LOAD

081108-MODAL FREQUENCY ANALYSIS OF 2D PLATE

081108-MODAL FREQUENCY ANALYSIS OF 2D PLATE

081108-MODAL FREQUENCY ANALYSIS OF 2D PLATE

081108-MODAL FREQUENCY ANALYSIS OF 2D PLATE

081108-MODAL FREQUENCY ANALYSIS OF 2D PLATE

081108-MODAL ANALYSIS OF FIXED PLATE 081108-MODAL ANALYSIS OF FIXED PLATE

081108-MODAL ANALYSIS OF FIXED PLATE 081108-MODAL ANALYSIS OF FIXED PLATE

081108-MODAL ANALYSIS OF FIXED PLATE

081108-MODAL ANALYSIS OF SIMPLY SUPPORTED BEAM

081108-MODAL ANALYSIS OF SIMPLY SUPPORTED BEAM

081108-MODAL ANALYSIS OF SIMPLY SUPPORTED BEAM 081108-MODAL ANALYSIS OF SIMPLY SUPPORTED BEAM

081108-MODAL ANALYSIS OF SIMPLY SUPPORTED BEAM

081108-MODAL ANALYSIS OF CANTILEVER BEAM

081108-MODAL ANALYSIS OF CANTILEVER BEAM

081108-MODAL ANALYSIS OF CANTILEVER BEAM 081108-MODAL ANALYSIS OF CANTILEVER BEAM

081108-MODAL ANALYSIS OF CANTILEVER BEAM

081108-THERMAL ANALYSIS OF A 2D PLATE

081108-CONDUCTIVE HEAT TRANSFER ANALYSIS OF A 2D COMPONENT

081108-HARMONIC ANALYSIS OF CANTILEVER BEAM

081108-HARMONIC ANALYSIS OF CANTILEVER BEAM

/*SIMULATION OF CAM AND FOLLOWER MECHANISM*/ #include<stdio.h> #include<conio.h> #include<math.h> void main() { float n,s,d0,ds,dr,d1,d2,d3,w,ao,ar,vo,vr; clrscr(); printf("Enter the RPM Value\n"); scanf("%f",&n); printf("Enter the Lift Value\n"); OF 2D PLATE 081016-THERMAL ANALYSIS scanf("%f",&s); printf("Enter the degree of Outstroke\n"); scanf("%f",&d0); printf("Enter the degree of Return stroke\n"); scanf("%f",&dr); printf("Enter the degree of rest\n"); scanf("%f",&ds); d1=(d0*(3.14/180)); d2=(dr*(3.14/180)); d3=(ds*(3.14/180)); w=(2*3.14*n)/60; vo=(2*w*s)/(d1/1000); vr=(2*w*s)/(d2/1000); ao=(4*w*w*s)/((d1*d1)/1000); ar=(4*w*w*s)/((d2*d2)/1000); printf("The Angular Velocity = %f\n",w); printf("The Maximum Velocity of Out stroke = %f\n",vo); printf("The Maximum Velocity of Return stroke = %f\n",vr); printf("The Maximum Acceleration of Out stroke = %f\n",ao); printf("The Maximum Acceleration of Return stroke = %f\n",ar);

getch(); }

/*Hydraulic Cylinder*/ #include <stdio.h> #include <conio.h> #include <math.h> void main() { float E,n,k,L,l,s,te,d1,d2,d,d3,d4,p,dp,area,parea,area1,area2,area3,re; float ep,ep1,retract; clrscr(); E=(2.1*(pow10(11))); printf("Cylinder thrust Input Value = "); scanf("%f",&te); n=(te*(pow10(3))*9.81); printf("Exerted Thrust = %5.2fN \n\n",n); printf("Assuming a factor of safety Input = "); scanf("%f",&s); k=(s*n); printf("Bucking Load = %5.2fN \n\n",k); printf("Length Input = "); scanf("%f",&l); L=(l/2); printf("Bucking length = %5.2fm \n\n",L); d1=(64*(L*L)*k); d2=((pow(3.14,3))*E); d=(d1/d2); d=(pow(d,0.25)); d=(d*1000); printf("Enter Cylinder Diameter = %5.2fmm \n\n",d); printf("Pressure Input = "); scanf("%f",&dp); dp*100000; parea=dp*0.9;

area1=(n/parea); printf("Enter the Pistion Area = %-2.3fm^2 \n\n",area1); d3=area1*4; d4=d3/3.14; printf("Boare diameter = %5.2fm \n\n",d4); area2=(3.14)/4*(.05*.05); ep=((area2/n)*(1/0.9)); ep1=(n/(pow10(5))); printf("Enter the Pressure = %fn/m^2 \n\n",ep1); re=(te*(pow10(3))*9.81); printf("Enter the Retract Thrust = %fn/m^2 \n",re); area3= ((3.14/4)*(.05*.05)-(.036*.036)); retract=((area3/n)*(1/.9)); printf("Enter the Retract Thrust Value = %fn/m^2 \n",re); retract=(re/(pow10(5))); printf("Enter Max Retract Thrust = %fn/m^2 \n",retract); getch(); } /*Performance Test on Refrigeration Plant*/ #include<stdio.h> #include<conio.h> #include<math.h> void main() { float l,b,h,cp,nt,t,t1,t2,t3,t4; float v,m,cp,wi,cop,cycle,eff ; clrscr(); printf("Enter the Length of Tank = "); scanf("%f",&l); printf("Enter the Breadth of Tank = "); scanf("%f",&b); printf("Enter the Height of Tank = "); scanf("%f",&h); v=((l*b*h)*(pow10(-6))); printf("Volume of Tank = %f",v); m=(1000*v); printf("Mass of Water = %f\n",m); printf("Enter the Value of CP from Data Book = "); scanf("%f",&cp); printf("Enter the Initial Temperature of Water = "); scanf("%f",&t1); printf("Enter the Final Temperature of water = "); scanf("%f",&t2); q=(m*cp*(t1-t2)); printf("Amount of Heat Removed = %f\n",q); printf("Enter the No. of Turns in the Energy Meter = "); scanf("%f",&nt); printf("Enter the Time Taken for the Revolution = "); scanf("%f",&t); wi=((3600/1200)*(nt/t)*1000);

printf("Work input to the system = %f\n",wi); cop=(q/wi); printf("Enter the 1st Value of Temperature of Water = "); scanf("%f",&t3); printf("Enter the 2nd Value of Temperature of Water = "); scanf("%f",&t4); cycle=((t4+273)/(t3-t4)); printf("COP of carnot cycle = %f\n",cycle); eff=((cop/cycle)*100); printf("Efficiency of Carnot Cycle = %f\n",eff); getch(); }

You might also like