Beispiel #1
0
 @Test
 public void testDielectricConstantPT() throws OutOfRangeException {
   double tol = 1e-4;
   System.out.println(getClass().getSimpleName() + " tolerance: " + tol);
   double[][] X =
       new double[][] {
         {0.785907250e2, 5, 298.15},
         // meta {0.112620970e1, 10, 873.15},
         {0.103126058e2, 40, 673.15}
       };
   for (double[] x : X) {
     assertEquals(x[0], if97.dielectricConstantPT(x[1], x[2]), tol);
   }
 }