Advertisement
Jgug

tec

Dec 13th, 2012
422
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.85 KB | None | 0 0
  1. // TEC.cpp: определяет точку входа для консольного приложения.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include <iostream>
  6. #include <math.h>
  7. #include <conio.h>
  8.  
  9. using namespace std;
  10.  
  11. void main()
  12. {
  13.     int f1=20;
  14.     int f2=22;
  15.     double U=4;
  16.     double r=29.2;
  17.     double L=250.4E-3;
  18.     double C=223.9E-6;
  19.     double p=0.25;
  20.     double w;
  21.     double I;
  22.     double Uc;
  23.     double Ul;
  24.  
  25.     cout<<"-----I------"<<endl;
  26.     for (double i=f1; i<=f2; i+=p)
  27.     {
  28.         w=2*3.14*i;
  29.         I = U/(sqrt(r*r+pow((w*L-1/(w*C)),2)));
  30.         cout<<I<<endl;
  31.     }
  32.    
  33.     cout<<"-----Uc-----"<<endl;
  34.     for (int i=f1; i<=f2; i+=p)
  35.     {
  36.         w=2*3.14*i;
  37.         Uc = U/(w*C*sqrt(r*r+pow((w*L-1/(w*C)),2)));
  38.         cout<<Uc<<endl;
  39.     }
  40.  
  41.     cout<<"-----Ul-----"<<endl;
  42.     for (int i=f1; i<=f2; i+=p)
  43.     {
  44.         w=2*3.14*i;
  45.         Ul = (w*L*U)/(sqrt(r*r+pow((w*L-1/(w*C)),2)));
  46.         cout<<Ul<<endl;
  47.     }
  48.     _getch();
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement