Math 503 computing assignment 1
FEM and FDM solution for u''(x)+q u(x)=f

by Nasser Abbasi
Project for Mathematics 503, Summer 2007. California State University, Fullerton, CA.

(a) Purpose and design of project

In this project we are asked to implement the Finite Element Methods (FEM) and Finite difference method (FDM) to find the solution u(x) for the following differential equation, and also compare both methods.

"solutionV2_improved_1.gif"

The 2 methods are compared for speed of convergence to the exact solution. The exact analytical solution is known for this simple differential equation:

"solutionV2_improved_2.gif"

"solutionV2_improved_3.gif"

"solutionV2_improved_4.gif"

"solutionV2_improved_5.gif"


The numerical solution for u(x) at each grid point is compared to the true solution, then the maximum error using each method is found. Also the RMSerror is calculated.

A brief overview of the FEM and FDM scheme used is now discussed.

FEM method

For the FEM, the variational approach is used (as contrasted by the Garlkin method). In the variational method, we seek to find a solution y(x) to a functional J(y(x)) defined by an integral such that this solution y(x) minimizes this functional. This solution will be the solution to the differential equation itself. However, we do not use nor try to find the differential equation at all in this method. We work directly on the first variation equation J'(y;φ)=0 itself by finding y(x) such that J'(y;φ)=0 for all the "solutionV2_improved_6.gif"  permissible directions. In the Garlkin method, we are given the differential equation, and then we substitute equation (2) below into the differential equation itself.

In this problem the φ functions are also the basis for the vector space in which the solution y(x) defined in. In other words, these "solutionV2_improved_7.gif" represent a basis for the V space of y(x) and we seek a solution

"solutionV2_improved_8.gif"

Which satisfies "solutionV2_improved_9.gif" for all the basis functions "solutionV2_improved_10.gif". "solutionV2_improved_11.gif" is defined by

"solutionV2_improved_12.gif"

Where i is the shape function number i=1,2,3..n and ψ(x)=1-x for 0<x<1, and ψ(x) = 0 for x>1 and ψ(x)=ψ(-x). The relationship between "solutionV2_improved_13.gif" and ψ(x) is illustrated in this diagram

"solutionV2_improved_14.gif"

In this problem the functional we want to minimize is given

"solutionV2_improved_15.gif"

Where q>0 and f are given constants. In the first part of this project we found that J(u) achieves a minimum iff J'(y;φ)=0 where J' (y; φ) is given by

"solutionV2_improved_16.gif"

We start the FEM by setting up the equations J' (y; "solutionV2_improved_17.gif") =0, therefore, we will have N number of equations, where N is the number of the shape functions φ. Hence for each "solutionV2_improved_18.gif" shape function "solutionV2_improved_19.gif" we would have

"solutionV2_improved_20.gif"

The above will generate N algebraic equations which we will then solve for the "solutionV2_improved_21.gif" coefficients. Once the "solutionV2_improved_22.gif" is found then we can determine the FEM solution u(x) from (2) above at any x.

It is important to agree on the numbering scheme of nodes, elements, and shape functions. The following diagram illustrates the numbering used.

"solutionV2_improved_23.gif"

This below plots the shape functions for illustration.

"solutionV2_improved_24.gif"

Graphics:Shape functions φ(x), h=2.22222, L=20., N=10

When generating each equation "solutionV2_improved_26.gif" for each basis "solutionV2_improved_27.gif" we take advantage of the domain of influence of each specific "solutionV2_improved_28.gif", we see from above that "solutionV2_improved_29.gif" is nonzero only over the range "solutionV2_improved_30.gif". The program calls a function to generate one equation for each basis. This function performs the integration shown in equation (4) but will only do the integration over "solutionV2_improved_31.gif" since  "solutionV2_improved_32.gif"=0 elsewhere.

Once the N equations are computed, We solve Ax=b to find x where x here is the vector which contain "solutionV2_improved_33.gif" coefficients as shown in equation (2) above. The matrix A will be tridiagonal in this problem since for each basis "solutionV2_improved_34.gif" (other than the first and the last basis) we see that it overlaps with 2 other basis "solutionV2_improved_35.gif" and "solutionV2_improved_36.gif" hence this causes an equation with 3 unknowns to be generated ("solutionV2_improved_37.gif". This below is an small function will shows the equations for N=8 and shows the A matrix to make this point more clear.

"solutionV2_improved_38.gif"

-5.71429+4.15952 c[1]+1.55476 c[2]==0
-11.4286+1.55476 c[1]+8.31905 c[2]+1.55476 c[3]==0
-11.4286+1.55476 c[2]+8.31905 c[3]+1.55476 c[4]==0
-11.4286+1.55476 c[3]+8.31905 c[4]+1.55476 c[5]==0
-11.4286+1.55476 c[4]+8.31905 c[5]+1.55476 c[6]==0
-11.4286+1.55476 c[5]+8.31905 c[6]+1.55476 c[7]==0
-11.4286+1.55476 c[6]+8.31905 c[7]+1.55476 c[8]==0
-5.71429+1.55476 c[7]+4.15952 c[8]==0

Which in Ax = b format, the above becomes

"solutionV2_improved_39.gif"

"solutionV2_improved_40.gif"

The above shows that A is diagonally dominant, and tridiagonal. Hence a tridiagonal solver is used since it is much faster than Gaussian elimination in this case. In FEM, the generate A matrix will always contain diagonal bands as the above and these matrices are sparse in nature.

FDM

In the FDM method, the central difference method is used to approximate u''(x). Hence in this method we already know the differential equation and we work directly on the differential equation, while in the FDM method above, we do not know necessarily what the differential equation is and work directly on the first variational term.  
The central difference scheme is given by

"solutionV2_improved_41.gif"

Where "solutionV2_improved_42.gif" means u at grid point "solutionV2_improved_43.gif". Now we substitute the above equation directly into the differential equation -u'' (x) + q u(x) = f   and obtain

"solutionV2_improved_44.gif"
"solutionV2_improved_45.gif"

Hence for each point (we start from the first internal grid point i=1 and not from the boundary point i=0) and hence for each such internal point, we see that we have 3 unknown. Hence the general Ax=b equations will also be tridiagonal. This is illustrate by this short example below. Notice that 2 equations are inserted manually into the set of the generated equations since "solutionV2_improved_46.gif" and "solutionV2_improved_47.gif", since these are boundary conditions given.

"solutionV2_improved_48.gif"

"solutionV2_improved_49.gif"

4 u[2]-0.1225 (u[1]-2 u[2]+u[3])==4
4 u[3]-0.1225 (u[2]-2 u[3]+u[4])==4
4 u[4]-0.1225 (u[3]-2 u[4]+u[5])==4
4 u[5]-0.1225 (u[4]-2 u[5]+u[6])==4
4 u[6]-0.1225 (u[5]-2 u[6]+u[7])==4
4 u[7]-0.1225 (u[6]-2 u[7]+u[8])==4
u[1]==0
u[8]==0

This shows the A matrix from the above set of equations. We see it is a tridiagonal, The last 2 rows are for the 2 equations for the boundary conditions

"solutionV2_improved_50.gif"

"solutionV2_improved_51.gif"

(b) Summary of numerical results

The error in approximation between numerical and exact solution for u(x) as a function of increasing number of points is generated for up to n=200 and the complete table is shown in the appendix at the end of the report. Both max error and RMS error is calculated for each n. Below is partial listing of the table for number of points n=4..21

"solutionV2_improved_52.gif"

number of elements FEM rms error FDM rms error FEM max error FDM max error
2 0.0230543 0.0107459 0.0230543 0.0186124
3 0.0123266 0.00559732 0.00871621 0.00791581
4 0.00790015 0.00334592 0.00528392 0.00500695
5 0.00561019 0.0022118 0.0032386 0.00312841
6 0.00424859 0.00156733 0.00231275 0.00225795
7 0.00336187 0.00116759 0.0016655 0.00163635
8 0.00274638 0.000903042 0.00129404 0.00127669
9 0.00229853 0.000719055 0.00101072 0.000999987
10 0.00196061 0.000586 0.000826163 0.000819053
11 0.0016982 0.000486696 0.000677674 0.000672847
12 0.00148958 0.000410632 0.000572964 0.000569535
13 0.00132048 0.00035109 0.000485639 0.000483159
14 0.00118114 0.000303612 0.000420617 0.000418766
15 0.00106472 0.000265147 0.000364975 0.000363575
16 0.000966257 0.000233552 0.000321868 0.000320783
17 0.000882096 0.000207284 0.000284258 0.000283408
18 0.000809488 0.000185209 0.000254225 0.000253548
19 0.000746328 0.00016648 0.000227624 0.000227079
20 0.000690978 0.000150454 0.00020587 0.000205426

The numerical results in the table is also plotted. The following 2 plots compare both methods accuracy for max error and rms error as function of increasing n for n up to 200. The full table is in the appendix.

"solutionV2_improved_53.gif"

"solutionV2_improved_54.gif"

"solutionV2_improved_55.gif"

"solutionV2_improved_56.gif"

(c) Discussion of numerical results

The FDM is more accurate than the FEM for low N. Two error measurements were used: RMS error and Max error. For low N, FDM is more accurate than FEM, even more so when looking at the RMS error as seen by the plot above.

From the plots above we observe that as N increases both methods become as accurate as each others in approximating the exact solution. This happens for both max error and for RMS error.

The following diagram below shows this more clearly, where both FEM and FDM solution are plotted for n=2,3,4,5,6,7,8. We see that FDM for low N is more accurate, but FEM catches up very quickly, and about N=8 FEM max error was the same as FDM error for up to 6 decimal places. The following was done for L=10 instead of L=1 to make the plots a little more  interesting.

"solutionV2_improved_57.gif"

"solutionV2_improved_58.gif"

FEM method is more complicated to implement than FDM. And from the above, we see that it does not give more accurate results than the simpler FDM method using central difference scheme. One might ask then why use FEM over FDM? Although this did not come up in this project, one can argue the following advantages of one method over the other:

Advantage of FEM over FDM

FEM solution u(x) can be used at point x in the domain and not just at the grid points "solutionV2_improved_59.gif"as with FDM

FEM can handle complicated boundary geometry, while FDM requires simple boundary geometry.

With FEM, one can add more elements in the vicinity where the solution changes rapidly to obtain more accuracy there. With FDM this is normally not done. Although one can also implement adaptive grid sizing as well in FDM, it is normally done in the time domain and not in the space domain.

Does not require knowing the differential equation to find the solution when working from the Variational approach as in this project. FDM requires knowing the differential equation.

Advantages of FDM over FEM

More accurate than FEM for low N. This is in particular when the exact solution is not too smooth. When the solution is not too smooth, more points are needed to make FEM as accurate as FDM.

Simpler to code and implement.

(d) Source code listing

Global parameters

"solutionV2_improved_60.gif"

Function name: makeEquation and its helpers
Input: the shape function number. Also access variable "solutionV2_improved_61.gif"to generate the weak form equation for the "solutionV2_improved_62.gif" shape function
Purpose: generate the weak for equation for "solutionV2_improved_63.gif" shape function. To make it simpler, I have 2 special functions to handle the first and last shape elements since these are special conditions.  
Returns: The weak for equation for the "solutionV2_improved_64.gif" shape function

"solutionV2_improved_65.gif"

"solutionV2_improved_66.gif"

"solutionV2_improved_67.gif"

"solutionV2_improved_68.gif"

Function name: φ
Input: i, the shape function number. z, the distance along the domain to find  φ at
Purpose: generate the  φ function.
Returns: the value of φ function at this z value.

"solutionV2_improved_69.gif"

"solutionV2_improved_70.gif"

Function name: yApprox
Input: x, distance along x direction. coeff, the "solutionV2_improved_71.gif" coefficient found for the FEM approximation from the equation y="solutionV2_improved_72.gif", h is the grid spacing, nPoints is number of points.
Purpose: calculate the solution from the FEM calculation after the "solutionV2_improved_73.gif"has been found.
Returns: u(x) based on FEM approximation

"solutionV2_improved_74.gif"

Function name: getUCentralMethod
Input: access to number of points
Purpose: performs finite difference calculation using the central difference scheme for the second derivative.
Returns: data, which is a matrix of 2 columns. The first column is the x value, second column is the u value at this x.

"solutionV2_improved_75.gif"

Function name: getErrorsInApproximation
Input: access FEM matrix, grid points, FDM data.
Purpose: called to calculate the RMS error and Max error for the FEM and FDM methods.
Returns: 4 numbers. rmserrorFEM, maxErrorFEM, rmserrorDiff, maxErrorFDM

"solutionV2_improved_76.gif"

Function name: triDiagonalSolve
Input: A,d
Purpose: called to solve for x in Ax=d for use on tridiagonal matrices A. This only works correctly if A is diagonally dominant.
Returns: vector x, the solution from Ax=d

"solutionV2_improved_77.gif"

Function name: process
Input: access to all the input parameters from the GUI. See init[] function above.
Purpose: called by the GUI after the call to init[] is made. This function is the driver which calls all the other functions above. It find the FEM and FDM solutions and plot them.
Returns: Graphics plot for the GUI to display

"solutionV2_improved_78.gif"

This is the Manipulate function. This is the GUI interface for the program. It display the GUI and called the Init and Process functions above to do the actual calculations

"solutionV2_improved_79.gif"

"solutionV2_improved_80.gif"

Appendix

This is an analysis function. Not part of the main program. It is used to generate a table that shows the error (RMS and Max) between FEM and FDM methods as n, the number of points, is increased.

"solutionV2_improved_81.gif"

"solutionV2_improved_82.gif"

number of points FEM rms error FDM rms error FEM max error FDM max error
4 0.00616329 0.00559732 0.00871621 0.00791581
5 0.00353305 0.00334592 0.00528392 0.00500695
6 0.00229035 0.0022118 0.0032386 0.00312841
7 0.00160582 0.00156733 0.00231275 0.00225795
8 0.0011886 0.00116759 0.0016655 0.00163635
9 0.000915461 0.000903042 0.00129404 0.00127669
10 0.00072686 0.000719055 0.00101072 0.000999987
11 0.000591147 0.000586 0.000826163 0.000819053
12 0.000490227 0.000486696 0.000677674 0.000672847
13 0.000413134 0.000410632 0.000572964 0.000569535
14 0.000352912 0.00035109 0.000485639 0.000483159
15 0.00030497 0.000303612 0.000420617 0.000418766
16 0.00026618 0.000265147 0.000364975 0.000363575
17 0.000234352 0.000233552 0.000321868 0.000320783
18 0.000207912 0.000207284 0.000284258 0.000283408
19 0.000185709 0.000185209 0.000254225 0.000253548
20 0.000166884 0.00016648 0.000227624 0.000227079
21 0.000150784 0.000150454 0.00020587 0.000205426
22 0.000136907 0.000136636 0.000186367 0.000186002
23 0.000124862 0.000124636 0.000170109 0.000169805
24 0.00011434 0.000114151 0.000155387 0.000155133
25 0.000105094 0.000104935 0.000142918 0.000142704
26 0.0000969267 0.0000967911 0.000131534 0.000131352
27 0.0000896758 0.0000895598 0.000121763 0.000121607
28 0.0000832094 0.0000831096 0.000112779 0.000112646
29 0.0000774181 0.0000773318 0.00010498 0.000104864
30 0.0000722113 0.0000721361 0.0000977667 0.0000976662
31 0.0000675126 0.000067447 0.0000914429 0.0000913551
32 0.0000632582 0.0000632006 0.0000855634 0.0000854865
33 0.0000593937 0.000059343 0.0000803651 0.0000802972
34 0.0000558729 0.000055828 0.0000755099 0.00007545
35 0.0000526561 0.0000526163 0.000071185 0.0000711317
36 0.0000497094 0.0000496739 0.0000671294 0.000067082
37 0.0000470034 0.0000469716 0.0000634927 0.0000634503
38 0.0000445124 0.000044484 0.0000600703 0.0000600323
39 0.0000422144 0.0000421888 0.0000569832 0.0000569491
40 0.0000400899 0.0000400668 0.0000540687 0.0000540379
41 0.0000381218 0.000038101 0.0000514258 0.000051398
42 0.0000362952 0.0000362763 0.0000489235 0.0000488983
43 0.0000345969 0.0000345797 0.0000466436 0.0000466207
44 0.000033015 0.0000329993 0.0000444792 0.0000444584
45 0.0000315391 0.0000315249 0.0000424987 0.0000424797
46 0.0000301601 0.0000301471 0.0000406141 0.0000405968
47 0.0000288696 0.0000288577 0.0000388827 0.0000388668
48 0.0000276602 0.0000276493 0.0000372317 0.0000372171
49 0.0000265253 0.0000265152 0.0000357094 0.000035696
50 0.0000254588 0.0000254495 0.0000342549 0.0000342426
51 0.0000244553 0.0000244467 0.0000329093 0.0000328979
52 0.00002351 0.0000235021 0.0000316213 0.0000316108
53 0.0000226185 0.0000226112 0.0000304261 0.0000304164
54 0.0000217768 0.00002177 0.0000292801 0.0000292711
55 0.0000209812 0.0000209749 0.0000282137 0.0000282054
56 0.0000202284 0.0000202226 0.0000271897 0.0000271819
57 0.0000195154 0.00001951 0.0000262342 0.000026227
58 0.0000188395 0.0000188344 0.0000253153 0.0000253086
59 0.0000181981 0.0000181933 0.0000244559 0.0000244496
60 0.0000175889 0.0000175845 0.0000236283 0.0000236224
61 0.0000170098 0.0000170056 0.0000228525 0.000022847
62 0.0000164588 0.0000164549 0.0000221044 0.0000220993
63 0.0000159341 0.0000159305 0.0000214017 0.0000213969
64 0.0000154342 0.0000154308 0.0000207234 0.0000207189
65 0.0000149574 0.0000149542 0.0000200849 0.0000200807
66 0.0000145024 0.0000144994 0.0000194678 0.0000194639
67 0.0000140678 0.000014065 0.000018886 0.0000188822
68 0.0000136525 0.0000136499 0.000018323 0.0000183195
69 0.0000132553 0.0000132528 0.0000177913 0.0000177879
70 0.0000128752 0.0000128728 0.0000172763 0.0000172732
71 0.0000125112 0.000012509 0.000016789 0.0000167861
72 0.0000121625 0.0000121603 0.0000163168 0.000016314
73 0.0000118281 0.0000118261 0.0000158692 0.0000158666
74 0.0000115073 0.0000115054 0.000015435 0.0000154325
75 0.0000111994 0.0000111976 0.0000150229 0.0000150206
76 0.0000109037 0.000010902 0.0000146228 0.0000146206
77 0.0000106195 0.0000106179 0.0000142426 0.0000142405
78 0.0000103463 0.0000103448 0.0000138731 0.0000138711
79 0.0000100835 0.0000100821 0.0000135215 0.0000135196
80 9.83064*10^^-6 9.82927*10^^-6 0.0000131796 0.0000131778
81 9.58715*10^^-6 9.58584*10^^-6 0.0000128538 0.0000128521
82 9.35259*10^^-6 9.35134*10^^-6 0.0000125369 0.0000125352
83 9.12653*10^^-6 9.12534*10^^-6 0.0000122344 0.0000122329
84 8.90857*10^^-6 8.90744*10^^-6 0.00001194 0.0000119385
85 8.69833*10^^-6 8.69725*10^^-6 0.0000116587 0.0000116573
86 8.49544*10^^-6 8.49441*10^^-6 0.0000113847 0.0000113834
87 8.29957*10^^-6 8.29859*10^^-6 0.0000111228 0.0000111215
88 8.1104*10^^-6 8.10946*10^^-6 0.0000108673 0.0000108661
89 7.92762*10^^-6 7.92672*10^^-6 0.0000106229 0.0000106217
90 7.75095*10^^-6 7.75009*10^^-6 0.0000103844 0.0000103833
91 7.58012*10^^-6 7.5793*10^^-6 0.000010156 0.0000101549
92 7.41488*10^^-6 7.4141*10^^-6 9.93301*10^^-6 9.93198*10^^-6
93 7.25498*10^^-6 7.25423*10^^-6 9.71919*10^^-6 9.7182*10^^-6
94 7.1002*10^^-6 7.09948*10^^-6 9.5104*10^^-6 9.50945*10^^-6
95 6.95032*10^^-6 6.94964*10^^-6 9.30999*10^^-6 9.30908*10^^-6
96 6.80514*10^^-6 6.80448*10^^-6 9.11419*10^^-6 9.11332*10^^-6
97 6.66446*10^^-6 6.66383*10^^-6 8.9261*10^^-6 8.92526*10^^-6
98 6.5281*10^^-6 6.52749*10^^-6 8.74224*10^^-6 8.74144*10^^-6
99 6.39588*10^^-6 6.3953*10^^-6 8.56547*10^^-6 8.5647*10^^-6
100 6.26764*10^^-6 6.26708*10^^-6 8.3926*10^^-6 8.39186*10^^-6
101 6.14321*10^^-6 6.14267*10^^-6 8.22626*10^^-6 8.22555*10^^-6
102 6.02246*10^^-6 6.02194*10^^-6 8.06352*10^^-6 8.06284*10^^-6
103 5.90523*10^^-6 5.90473*10^^-6 7.90681*10^^-6 7.90616*10^^-6
104 5.79139*10^^-6 5.79091*10^^-6 7.75343*10^^-6 7.75279*10^^-6
105 5.68081*10^^-6 5.68035*10^^-6 7.60562*10^^-6 7.60501*10^^-6
106 5.57337*10^^-6 5.57292*10^^-6 7.46088*10^^-6 7.4603*10^^-6
107 5.46894*10^^-6 5.46852*10^^-6 7.32131*10^^-6 7.32075*10^^-6
108 5.36743*10^^-6 5.36702*10^^-6 7.18459*10^^-6 7.18404*10^^-6
109 5.26871*10^^-6 5.26832*10^^-6 7.05265*10^^-6 7.05213*10^^-6
110 5.1727*10^^-6 5.17232*10^^-6 6.92336*10^^-6 6.92285*10^^-6
111 5.07928*10^^-6 5.07891*10^^-6 6.79851*10^^-6 6.79803*10^^-6
112 4.98838*10^^-6 4.98802*10^^-6 6.67612*10^^-6 6.67565*10^^-6
113 4.89989*10^^-6 4.89955*10^^-6 6.55787*10^^-6 6.55742*10^^-6
114 4.81373*10^^-6 4.8134*10^^-6 6.4419*10^^-6 6.44146*10^^-6
115 4.72983*10^^-6 4.72951*10^^-6 6.32978*10^^-6 6.32936*10^^-6
116 4.6481*10^^-6 4.6478*10^^-6 6.21979*10^^-6 6.21938*10^^-6
117 4.56848*10^^-6 4.56818*10^^-6 6.11338*10^^-6 6.11299*10^^-6
118 4.49088*10^^-6 4.49059*10^^-6 6.00897*10^^-6 6.00859*10^^-6
119 4.41524*10^^-6 4.41496*10^^-6 5.9079*10^^-6 5.90753*10^^-6
120 4.3415*10^^-6 4.34123*10^^-6 5.80869*10^^-6 5.80833*10^^-6
121 4.26959*10^^-6 4.26933*10^^-6 5.71261*10^^-6 5.71226*10^^-6
122 4.19945*10^^-6 4.1992*10^^-6 5.61826*10^^-6 5.61793*10^^-6
123 4.13102*10^^-6 4.13078*10^^-6 5.52684*10^^-6 5.52652*10^^-6
124 4.06426*10^^-6 4.06402*10^^-6 5.43704*10^^-6 5.43673*10^^-6
125 3.9991*10^^-6 3.99887*10^^-6 5.34999*10^^-6 5.34968*10^^-6
126 3.93549*10^^-6 3.93527*10^^-6 5.26445*10^^-6 5.26416*10^^-6
127 3.87339*10^^-6 3.87318*10^^-6 5.18149*10^^-6 5.18121*10^^-6
128 3.81275*10^^-6 3.81254*10^^-6 5.09995*10^^-6 5.09968*10^^-6
129 3.75352*10^^-6 3.75332*10^^-6 5.02083*10^^-6 5.02056*10^^-6
130 3.69566*10^^-6 3.69547*10^^-6 4.94304*10^^-6 4.94279*10^^-6
131 3.63913*10^^-6 3.63894*10^^-6 4.86752*10^^-6 4.86728*10^^-6
132 3.58389*10^^-6 3.5837*10^^-6 4.79327*10^^-6 4.79302*10^^-6
133 3.52989*10^^-6 3.52971*10^^-6 4.72114*10^^-6 4.7209*10^^-6
134 3.47711*10^^-6 3.47693*10^^-6 4.65019*10^^-6 4.64997*10^^-6
135 3.4255*10^^-6 3.42533*10^^-6 4.58126*10^^-6 4.58104*10^^-6
136 3.37503*10^^-6 3.37487*10^^-6 4.51343*10^^-6 4.51322*10^^-6
137 3.32567*10^^-6 3.32551*10^^-6 4.4475*10^^-6 4.44729*10^^-6
138 3.27738*10^^-6 3.27723*10^^-6 4.38262*10^^-6 4.38242*10^^-6
139 3.23014*10^^-6 3.22999*10^^-6 4.31952*10^^-6 4.31932*10^^-6
140 3.18391*10^^-6 3.18377*10^^-6 4.25741*10^^-6 4.25722*10^^-6
141 3.13867*10^^-6 3.13853*10^^-6 4.19698*10^^-6 4.1968*10^^-6
142 3.09438*10^^-6 3.09425*10^^-6 4.13749*10^^-6 4.13731*10^^-6
143 3.05103*10^^-6 3.05089*10^^-6 4.07959*10^^-6 4.07941*10^^-6
144 3.00858*10^^-6 3.00845*10^^-6 4.02257*10^^-6 4.0224*10^^-6
145 2.96701*10^^-6 2.96688*10^^-6 3.96705*10^^-6 3.96689*10^^-6
146 2.92629*10^^-6 2.92617*10^^-6 3.91237*10^^-6 3.91221*10^^-6
147 2.88641*10^^-6 2.88629*10^^-6 3.85911*10^^-6 3.85895*10^^-6
148 2.84734*10^^-6 2.84722*10^^-6 3.80664*10^^-6 3.80648*10^^-6
149 2.80905*10^^-6 2.80894*10^^-6 3.75551*10^^-6 3.75536*10^^-6
150 2.77154*10^^-6 2.77143*10^^-6 3.70513*10^^-6 3.70499*10^^-6
151 2.73477*10^^-6 2.73466*10^^-6 3.65603*10^^-6 3.65589*10^^-6
152 2.69872*10^^-6 2.69862*10^^-6 3.60763*10^^-6 3.6075*10^^-6
153 2.66339*10^^-6 2.66329*10^^-6 3.56045*10^^-6 3.56032*10^^-6
154 2.62874*10^^-6 2.62864*10^^-6 3.51394*10^^-6 3.51381*10^^-6
155 2.59477*10^^-6 2.59467*10^^-6 3.46857*10^^-6 3.46844*10^^-6
156 2.56145*10^^-6 2.56135*10^^-6 3.42384*10^^-6 3.42372*10^^-6
157 2.52876*10^^-6 2.52867*10^^-6 3.3802*10^^-6 3.38008*10^^-6
158 2.4967*10^^-6 2.49661*10^^-6 3.33717*10^^-6 3.33705*10^^-6
159 2.46525*10^^-6 2.46516*10^^-6 3.29516*10^^-6 3.29505*10^^-6
160 2.43438*10^^-6 2.4343*10^^-6 3.25374*10^^-6 3.25363*10^^-6
161 2.4041*10^^-6 2.40401*10^^-6 3.2133*10^^-6 3.21319*10^^-6
162 2.37437*10^^-6 2.37429*10^^-6 3.17341*10^^-6 3.1733*10^^-6
163 2.34519*10^^-6 2.34511*10^^-6 3.13445*10^^-6 3.13434*10^^-6
164 2.31655*10^^-6 2.31647*10^^-6 3.09601*10^^-6 3.09591*10^^-6
165 2.28842*10^^-6 2.28835*10^^-6 3.05846*10^^-6 3.05836*10^^-6
166 2.26081*10^^-6 2.26074*10^^-6 3.02141*10^^-6 3.02131*10^^-6
167 2.23369*10^^-6 2.23362*10^^-6 2.98521*10^^-6 2.98511*10^^-6
168 2.20706*10^^-6 2.20699*10^^-6 2.94948*10^^-6 2.94938*10^^-6
169 2.1809*10^^-6 2.18084*10^^-6 2.91455*10^^-6 2.91446*10^^-6
170 2.15521*10^^-6 2.15514*10^^-6 2.88008*10^^-6 2.87999*10^^-6
171 2.12996*10^^-6 2.1299*10^^-6 2.84638*10^^-6 2.84629*10^^-6
172 2.10516*10^^-6 2.1051*10^^-6 2.8131*10^^-6 2.81302*10^^-6
173 2.08079*10^^-6 2.08073*10^^-6 2.78057*10^^-6 2.78048*10^^-6
174 2.05684*10^^-6 2.05678*10^^-6 2.74844*10^^-6 2.74836*10^^-6
175 2.0333*10^^-6 2.03324*10^^-6 2.71701*10^^-6 2.71693*10^^-6
176 2.01016*10^^-6 2.0101*10^^-6 2.68598*10^^-6 2.6859*10^^-6
177 1.98741*10^^-6 1.98735*10^^-6 2.65561*10^^-6 2.65554*10^^-6
178 1.96505*10^^-6 1.96499*10^^-6 2.62562*10^^-6 2.62555*10^^-6
179 1.94306*10^^-6 1.94301*10^^-6 2.59627*10^^-6 2.5962*10^^-6
180 1.92144*10^^-6 1.92139*10^^-6 2.56728*10^^-6 2.56721*10^^-6
181 1.90018*10^^-6 1.90013*10^^-6 2.53889*10^^-6 2.53883*10^^-6
182 1.87927*10^^-6 1.87922*10^^-6 2.51085*10^^-6 2.51079*10^^-6
183 1.8587*10^^-6 1.85866*10^^-6 2.4834*10^^-6 2.48333*10^^-6
184 1.83847*10^^-6 1.83843*10^^-6 2.45627*10^^-6 2.45621*10^^-6
185 1.81857*10^^-6 1.81852*10^^-6 2.42971*10^^-6 2.42964*10^^-6
186 1.79899*10^^-6 1.79894*10^^-6 2.40345*10^^-6 2.40339*10^^-6
187 1.77972*10^^-6 1.77968*10^^-6 2.37773*10^^-6 2.37767*10^^-6
188 1.76076*10^^-6 1.76072*10^^-6 2.35232*10^^-6 2.35226*10^^-6
189 1.74211*10^^-6 1.74206*10^^-6 2.32741*10^^-6 2.32736*10^^-6
190 1.72374*10^^-6 1.7237*10^^-6 2.3028*10^^-6 2.30274*10^^-6
191 1.70567*10^^-6 1.70563*10^^-6 2.27867*10^^-6 2.27862*10^^-6
192 1.68788*10^^-6 1.68784*10^^-6 2.25482*10^^-6 2.25477*10^^-6
193 1.67037*10^^-6 1.67033*10^^-6 2.23145*10^^-6 2.23139*10^^-6
194 1.65312*10^^-6 1.65309*10^^-6 2.20833*10^^-6 2.20828*10^^-6
195 1.63615*10^^-6 1.63611*10^^-6 2.18567*10^^-6 2.18562*10^^-6
196 1.61943*10^^-6 1.61939*10^^-6 2.16327*10^^-6 2.16322*10^^-6
197 1.60297*10^^-6 1.60293*10^^-6 2.14129*10^^-6 2.14125*10^^-6
198 1.58676*10^^-6 1.58672*10^^-6 2.11957*10^^-6 2.11952*10^^-6
199 1.57079*10^^-6 1.57075*10^^-6 2.09825*10^^-6 2.09821*10^^-6
200 1.55506*10^^-6 1.55503*10^^-6 2.07718*10^^-6 2.07713*10^^-6
201 1.53957*10^^-6 1.53953*10^^-6 2.0565*10^^-6 2.05645*10^^-6

Created by Wolfram Mathematica 6.0  (19 August 2007) Valid XHTML 1.1!