首页 > 代码库 > 北大poj- 1045
北大poj- 1045
Bode Plot
Time Limit: 1000MS | Memory Limit: 10000K | |
Total Submissions: 14060 | Accepted: 8820 |
Description
Consider the AC circuit below. We will assume that the circuit is in steady-state. Thus, the voltage at nodes 1 and 2 are given by v1 = VS coswt and v2 = VRcos (wt + q ) where VS is the voltage of the source, w is the frequency (in radians per second), and t is time. VR is the magnitude of the voltage drop across the resistor, and q is its phase.
You are to write a program to determine VR for different values of w. You will need two laws of electricity to solve this problem. The first is Ohm‘s Law, which states v2 = iR where i is the current in the circuit, oriented clockwise. The second is i = C d/dt (v1-v2) which relates the current to the voltage on either side of the capacitor. "d/dt"indicates the derivative with respect to t.
You are to write a program to determine VR for different values of w. You will need two laws of electricity to solve this problem. The first is Ohm‘s Law, which states v2 = iR where i is the current in the circuit, oriented clockwise. The second is i = C d/dt (v1-v2) which relates the current to the voltage on either side of the capacitor. "d/dt"indicates the derivative with respect to t.
Input
The input will consist of one or more lines. The first line contains three real numbers and a non-negative integer. The real numbers are VS, R, and C, in that order. The integer, n, is the number of test cases. The following n lines of the input will have one real number per line. Each of these numbers is the angular frequency, w.
Output
For each angular frequency in the input you are to output its corresponding VR on a single line. Each VR value output should be rounded to three digits after the decimal point.
Sample Input
1.0 1.0 1.0 90.010.0316230.10.316231.03.162310.031.623100.0
Sample Output
0.0100.0320.1000.3020.7070.9530.9951.0001.000
Source
Greater New York 2001
分析:年轻态健康品——水
1 /* 2 1.0 1.0 1.0 9 3 0.01 4 0.031623 5 0.1 6 0.31623 7 1.0 8 3.1623 9 10.010 31.62311 100.012 */13 14 #include <stdio.h>15 #include <math.h>16 17 #define MAX_NUM 5018 19 int n;20 double Vs, R, C;21 double w[MAX_NUM], Vr[MAX_NUM];22 23 void GetData()24 {25 int i = 0;26 scanf("%lf %lf %lf %d", &Vs, &R, &C, &n);27 for(i=0; i<n; i++)28 {29 scanf("%lf", &w[i]);30 }31 }32 33 void Calc()34 {35 int i = 0;36 for(i=0; i<n; i++)37 {38 Vr[i]=C*R*w[i]*Vs / sqrt(1 + pow(C*R*w[i], 2));39 }40 }41 42 void PrintResult()43 {44 int i = 0;45 for(i=0; i<n; i++)46 {47 printf("%.3f\n", Vr[i]);48 }49 }50 51 int main()52 {53 GetData();54 Calc();55 PrintResult();56 return 0;57 }
北大poj- 1045
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。