Merge pull request #51 from VolkerMuehlhaus/openEMS_update_Jan2026

openEMS module update, faster simulation of core model
This commit is contained in:
PhillipRambo 2026-01-26 10:07:00 +01:00 committed by GitHub
commit 539b1d26b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
113 changed files with 445825 additions and 578666 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 153 KiB

After

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 231 KiB

After

Width:  |  Height:  |  Size: 142 KiB

View File

@ -137,18 +137,18 @@ The script defines simulation parameters such as the unit of measurement (micron
```
unit = 1e-6 # Geometry is in microns
margin = 100 # Margin from GDSII geometry to simulation boundary in microns
margin = 20 # Margin from GDSII geometry to simulation boundary in microns
fstart = 0 # Start frequency (Hz)
fstop = 350e9 # Stop frequency (Hz)
numfreq = 401 # Number of frequency points to simulate
refined_cellsize = 0.3 # Mesh cell size in conductor region
refined_cellsize = 0.5 # Mesh cell size in conductor region
```
The boundary conditions for the simulation are also defined here using options like **'PEC'** (Perfect Electric Conductor), **'PMC'** (Perfect Magnetic Conductor), **'MUR'** (simple absorbing boundary), and **'PML_8'** (Perfectly Matched Layer).
```
`Boundaries = ['PML_4', 'PML_4', 'PML_4', 'PML_4', 'PEC', 'PML_4']`
Boundaries = ['PEC', 'PEC', 'PEC', 'PEC', 'PEC', 'MUR']
```

View File

@ -0,0 +1,27 @@
# Utilities for gds2openEMS
########################################################################
#
# Copyright 2025 Volker Muehlhaus and IHP PDK Authors
#
# Licensed under the GNU General Public License, Version 3.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.gnu.org/licenses/gpl-3.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
########################################################################
from . import util_stackup_reader as stackup_reader
from . import util_gds_reader as gds_reader
from . import util_utilities as utilities
from . import util_simulation_setup as simulation_setup
from . import util_meshlines as util_meshlines
__version__ = "0.1.1" # version of gds2openEMS

View File

@ -1,14 +1,115 @@
########################################################################
#
# Copyright 2025 Volker Muehlhaus and IHP PDK Authors
#
# Licensed under the GNU General Public License, Version 3.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.gnu.org/licenses/gpl-3.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
########################################################################
# Extract objects on IHP layers in GDSII file
import gdspy
import numpy as np
import os
import util_stackup_reader as stackup_reader
# check that we have gdspy version 1.6.x or later
# gdspy 1.4.2 is known for issues with our geometries
version_str = gdspy.__version__
major, minor, patch = version_str.split('.')
if int(major) == 1:
if int(minor) < 6:
print('\nWARNING: Your gdspy module version ', version_str, ' is too old, this is known to cause problems.')
print(' Please update to 1.6.13 or later!')
print(' Consider using venv if you are not allowed to modify the global Python modules of your system.')
print(' https://docs.python.org/3/library/venv.html \n')
# ============= technology specific stuff ===============
# ======================================
class layer_bounding_box:
"""
bounding box class is used to store xmin,xmax,ymin,ymax for one layer
"""
def __init__ (self, xmin, xmax, ymin, ymax):
self.xmin = xmin
self.xmax = xmax
self.ymin = ymin
self.ymax = ymax
def update (self, xmin, xmax, ymin, ymax):
self.xmin = min(xmin, self.xmin)
self.xmax = max(xmax, self.xmax)
self.ymin = min(ymin, self.ymin)
self.ymax = max(ymax, self.ymax)
class all_bounding_box_list:
"""
stores bounding box instances for multiple layers
and global bounding box across all layers
"""
def __init__ (self):
self.bounding_boxes = {}
# initialize values for bounding box calculation
self.xmin=float('inf')
self.ymin=float('inf')
self.xmax=float('-inf')
self.ymax=float('-inf')
def update (self, layer, xmin, xmax, ymin, ymax):
if self.bounding_boxes.get(layer) is not None:
self.bounding_boxes[layer].update(xmin, xmax, ymin, ymax)
else:
self.bounding_boxes[layer] = layer_bounding_box(xmin, xmax, ymin, ymax)
# also update global values
self.xmin = min(self.xmin, xmin)
self.xmax = max(self.xmax, xmax)
self.ymin = min(self.ymin, ymin)
self.ymax = max(self.ymax, ymax)
def get_layer_bounding_box (self, layer):
# return bounding box of one specific layer
# if layer not found, return global bounding box
xmin = self.xmin
xmax = self.xmax
ymin = self.ymin
ymax = self.ymax
if layer is not None:
if self.bounding_boxes.get(layer) is not None:
bbox = self.bounding_boxes[int(layer)]
xmin = bbox.xmin
xmax = bbox.xmax
ymin = bbox.ymin
ymax = bbox.ymax
return xmin, xmax, ymin, ymax
def merge (self, another_bounding_box_list):
# combine this bounding box with another bounding box from another GDSII import
# combine the dictionaries with per-layer data
self.bounding_boxes.update (another_bounding_box_list.bounding_boxes)
# combine the overall total boundary
self.xmin = min(self.xmin, another_bounding_box_list.xmin)
self.xmax = max(self.xmax, another_bounding_box_list.xmax)
self.ymin = min(self.ymin, another_bounding_box_list.ymin)
self.ymax = max(self.ymax, another_bounding_box_list.ymax)
# ============= polygons ===============
class gds_polygon:
@ -23,7 +124,8 @@ class gds_polygon:
self.layernum = layernum
self.is_port = False
self.is_via = False
self.CSXpoly = None
def add_vertex (self, x,y):
self.pts_x = np.append(self.pts_x, x)
self.pts_y = np.append(self.pts_y, y)
@ -48,13 +150,10 @@ class all_polygons_list:
def __init__ (self):
self.polygons = []
self.xmin = 0
self.xmax = 0
self.ymin = 0
self.ymax = 0
self.bounding_box = all_bounding_box_list() # manages bounding box per layer and global
def append (self, poly):
# combine points in polygon from pts_x and pts_y into pts
# before we append, combine points in polygon from pts_x and pts_y into pts
poly.process_pts()
# add polygon to list
self.polygons.append (poly)
@ -69,15 +168,19 @@ class all_polygons_list:
poly.is_port = is_port
poly.is_via = is_via
self.append(poly)
# need to update min and max here, for gds data that is done after reading file
self.xmin = min(self.xmin, x1, x2)
self.xmax = max(self.xmax, x1, x2)
self.ymin = min(self.ymin, y1, y2)
self.ymax = max(self.ymax, y1, y2)
self.bounding_box.update (layernum, min(x1,x2), max(x1,x2),min(y1,y2),max(y1,y2))
def add_polygon (self, xy, layernum, is_port=False, is_via=False):
# append polygon array to list, this can also be done later, after reading GDSII file
# polygon data structure must be [[x1,y1],[x2,y2],...[xn,yn]]
xmin=float('inf')
ymin=float('inf')
xmax=float('-inf')
ymax=float('-inf')
poly = gds_polygon(layernum)
numpts = len(xy)
for pt in range(0, numpts):
@ -86,23 +189,52 @@ class all_polygons_list:
y = pt[1]
poly.add_vertex(x,y)
# need to update min and max here, for gds data that is done after reading file
self.xmin = min(self.xmin, x)
self.xmax = max(self.xmax, x)
self.ymin = min(self.ymin, y)
self.ymax = max(self.ymax, y)
xmin = min(xmin, x)
xmax = max(xmax, x)
ymin = min(ymin, y)
ymax = max(ymax, y)
# need to update min and max here, for gds data that is done after reading file
self.bounding_box.update (layernum, xmin, xmax, ymin, ymax)
self.append(poly)
def set_bounding_box (self, xmin,xmax,ymin,ymax):
self.xmin = xmin
self.xmax = xmax
self.ymin = ymin
self.ymax = ymax
# global bounding box, over all evaluated layers
self.bounding_box.xmin = xmin
self.bounding_box.xmax = xmax
self.bounding_box.ymin = ymin
self.bounding_box.ymax = ymax
def get_layer_bounding_box (self, layer):
# return bounding box for specific layer, returns global if layer not found
return self.bounding_box.get_layer_bounding_box (layer)
def get_bounding_box (self):
return self.xmin, self.xmax, self.ymin, self.ymax
# return global bounding box
return self.bounding_box.xmin, self.bounding_box.xmax, self.bounding_box.ymin, self.bounding_box.ymax
def get_xmin (self):
# return global bounding box
return self.bounding_box.xmin
def get_xmax (self):
# return global bounding box
return self.bounding_box.xmax
def get_ymin (self):
# return global bounding box
return self.bounding_box.ymin
def get_ymax (self):
# return global bounding box
return self.bounding_box.ymax
def merge (self, another_polygons_list):
# merge with another polygon list from another GDSII import
for polygon in another_polygons_list.polygons:
self.polygons.append(polygon)
# also merge boundary information
self.bounding_box.merge(another_polygons_list.bounding_box)
# ---------------------- via merging option --------------------
@ -124,9 +256,10 @@ def merge_via_array (polygons, maxspacing):
return mergedpolygonset.polygons
# ----------- read GDSII file, return openEMS polygon list object -----------
def read_gds(filename, layerlist, purposelist, metals_list, preprocess=False, merge_polygon_size=0 ):
def read_gds(filename, layerlist, purposelist, metals_list, preprocess=False, merge_polygon_size=0, mirror=False, offset_x=0, offset_y=0, gds_boundary_layers=[], layernumber_offset=0, cellname=""):
"""
Read GDSII file and return polygon list object
@ -199,56 +332,76 @@ def read_gds(filename, layerlist, purposelist, metals_list, preprocess=False, me
# end preprocessing
# evaluate only first top level cell
toplevel_cell_list = input_library.top_level()
cell = toplevel_cell_list[0]
# try to get cell named cellname, otherwise top level cell
cell = input_library.cells.get(cellname, toplevel_cell_list[0])
all_polygons = all_polygons_list()
# initialize values for bounding box calculation
xmin=float('inf')
ymin=float('inf')
xmax=float('-inf')
ymax=float('-inf')
# iterate over IHP technology layers
for layer_to_extract in layerlist:
# flatten hierarchy below this cell
cell.flatten(single_layer=None, single_datatype=None, single_texttype=None)
# optional mirror and translation of entire cell
for poly in cell.polygons:
if mirror:
# optional mirror
poly = poly.mirror(p1=[0,0],p2=[0,1])
if (offset_x != 0) or (offset_y != 0):
# optional translation after mirror
poly = poly.translate(offset_x, offset_y)
# iterate over XML technology metal layers and (optional) dielectric layer boundary spec
extended_layer_list = layerlist
extended_layer_list.extend(gds_boundary_layers)
for layer_to_extract in extended_layer_list:
# print ("Evaluating layer ", str(layer_to_extract))
# flatten hierarchy below this cell
cell.flatten(single_layer=None, single_datatype=None, single_texttype=None)
# get layers used in cell
used_layers = cell.get_layers()
# Note on layer numbers:
# Used layer is the layer base number, layer_to_extract has the layer number offset from XML
# For this file, the layernumber_offset applies ALWAYS
# check if layer-to-extract is used in cell
if (layer_to_extract in used_layers):
layer_to_extract_gds = layer_to_extract - layernumber_offset
if (layer_to_extract_gds in used_layers): # use base layer number here to match GDSII
# iterate over layer-purpose pairs (by_spec=true)
# do not descend into cell references (depth=0)
LPPpolylist = cell.get_polygons(by_spec=True, depth=0)
for LPP in LPPpolylist:
layer = LPP[0]
layer = LPP[0]
purpose = LPP[1]
# now get polygons for this one layer-purpose-pair
if (layer==layer_to_extract) and (purpose in purposelist):
if (layer==layer_to_extract_gds) and (purpose in purposelist):
layerpolygons = LPPpolylist[(layer, purpose)]
# optional via array merging, only for via layers
metal = metals_list.getbylayernumber(layer_to_extract)
metal = metals_list.getbylayernumber(layer_to_extract) # this is the layer number with offset, to match XML stackup
if metal != None:
if (merge_polygon_size>0) and metal.is_via:
layerpolygons = merge_via_array (layerpolygons, merge_polygon_size)
# bounding box for this layer
xmin=float('inf')
ymin=float('inf')
xmax=float('-inf')
ymax=float('-inf')
# iterate over layer polygons
for polypoints in layerpolygons:
numvertices = int(polypoints.size/polypoints.ndim)
# new polygon, store layer number information
new_poly = gds_polygon(layer)
new_poly = gds_polygon(layer + layernumber_offset)
# get vertices
for vertex in range(numvertices):
@ -258,18 +411,70 @@ def read_gds(filename, layerlist, purposelist, metals_list, preprocess=False, me
new_poly.add_vertex(x,y)
# update bounding box information
if x<xmin: xmin=x
if x>xmax: xmax=x
if y<ymin: ymin=y
if y>ymax: ymax=y
xmin = min(x,xmin)
xmax = max(x,xmax)
ymin = min(y,ymin)
ymax = max(y,ymax)
# polygon is complete, process and add to list
all_polygons.append(new_poly)
all_polygons.set_bounding_box (xmin,xmax,ymin,ymax)
# done with this layer, store bounding box for this layer
all_polygons.bounding_box.update(layer + layernumber_offset, xmin, xmax, ymin, ymax)
'''
# Re-evaluate bounding box if we have a bounding box specified in GDS file and evaluation is requested
if gds_boundary is not None:
spec = gds_boundary.split(":")
boundary_layer = int(spec[0])
if len(spec)>1:
# user has specified purpose explicitely
boundary_purpose_list = [int(spec[1])]
else:
# use global purpose list
boundary_purpose_list = purposelist
# get layers used in cell
used_layers = cell.get_layers()
# check if layer-to-extract is used in cell
if (boundary_layer in used_layers):
# reset previous bounding box and start all over again
xmin=float('inf')
ymin=float('inf')
xmax=float('-inf')
ymax=float('-inf')
# iterate over layer-purpose pairs (by_spec=true)
# do not descend into cell references (depth=0)
LPPpolylist = cell.get_polygons(by_spec=True, depth=0)
for LPP in LPPpolylist:
layer = LPP[0]
purpose = LPP[1]
# now get polygons for this one layer-purpose-pair
if (layer==boundary_layer) and (purpose in boundary_purpose_list):
layerpolygons = LPPpolylist[(layer, purpose)]
# iterate over layer polygons
for polypoints in layerpolygons:
numvertices = int(polypoints.size/polypoints.ndim)
# get vertices
for vertex in range(numvertices):
x = polypoints[vertex,0]
y = polypoints[vertex,1]
# update bounding box information
if x<xmin: xmin=x
if x>xmax: xmax=x
if y<ymin: ymin=y
if y>ymax: ymax=y
'''
# all_polygons.set_bounding_box (xmin,xmax,ymin,ymax)
# done!
return all_polygons
@ -279,16 +484,5 @@ def read_gds(filename, layerlist, purposelist, metals_list, preprocess=False, me
# =======================================================================================
# Test code when running as standalone script
# =======================================================================================
if __name__ == "__main__":
filename = "L_2n0_simplified.gds"
allpolygons = read_gds(filename,[134, 133, 126, 8],[0], None) # read layers 134,133,126, 8 with purpose 0
for poly in allpolygons.polygons:
print(poly)
print("Bounding box: " + str(allpolygons.xmin) + " " + str(allpolygons.xmax) + " " + str(allpolygons.ymin) + " " + str(allpolygons.ymax))

View File

@ -1,40 +1,126 @@
# -*- coding: utf-8 -*-
########################################################################
#
# Copyright 2025 Volker Muehlhaus and IHP PDK Authors
#
# Licensed under the GNU General Public License, Version 3.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.gnu.org/licenses/gpl-3.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
########################################################################
# create mesh lines for metals and dielectrics
import math
from util_stackup_reader import *
from util_gds_reader import *
import numpy as np
def create_z_mesh(mesh, dielectrics_list, metals_list, target_cellsize, max_cellsize, antenna_margin, exclude_list):
class mesh_stackup_layer:
# dielectric layer for meshing control
def __init__ (self, dielectric):
self.dielectric = dielectric
self.metal_inside = False
self.meshsize_top = 0
self.meshsize_bottom = 0
self.mesh_done = False
class mesh_stackup_layers:
# all dielectric layer for meshing control
def __init__ (self):
self.stackup_layers = []
# first, add all stackup, which also tags layers with metal mesh inside
for dielectric in dielectrics_list.dielectrics:
self.stackup_layers.append(mesh_stackup_layer(dielectric))
# next, set the neighbours of metal layers to the target meshsize as starting value
for i, stackup_layer in enumerate(self.stackup_layers):
if stackup_layer.metal_inside:
if not stackup_layer.dielectric.is_top:
above = self.stackup_layers[i+1]
above.meshsize_bottom = target_cellsize
elif not stackup_layer.dielectric.is_bottom:
below = self.stackup_layers[i-1]
below.meshsize_bottom = target_cellsize
def append (self, stackup_layer):
self.stackup_layers.append (stackup_layer)
# check for metal inside
for metal in metals_list.metals:
# metals from the exclude list are not meshed like other metals, so skip them here
if metal.name not in exclude_list:
# only metal layers with polygons or vias are meshed
if metal.is_used or metal.is_via:
# if this is inside our dielectric, mark as metal_inside
# Note: this only detects metals fully encloded by the dielectric
if (metal.zmin > stackup_layer.dielectric.zmin) and (metal.zmax < stackup_layer.dielectric.zmax):
stackup_layer.metal_inside = True
stackup_layer.meshsize_top = target_cellsize
stackup_layer.meshsize_bottom = target_cellsize
for metal in metals_list.metals:
if metal.name not in exclude_list:
# print('Checking metal layer ', metal.name, ' used:', str(metal.is_used), ' via:', str(metal.is_via))
if metal.is_used:
add_equal_meshlines(mesh, 'z', metal.zmin, metal.zmax, target_cellsize)
else:
# don't mesh unused layers, but place at least one mesh line for each unused via
if metal.is_via:
if not metal.is_via:
metal_thickness = metal.zmax-metal.zmin
if metal_thickness > 3*target_cellsize:
# for thick metals, we just place mesh lines at top and bottom, and let smoothing do the filling
mesh.AddLine('z', metal.zmin)
mesh.AddLine('z', metal.zmin + target_cellsize)
mesh.AddLine('z', metal.zmax)
mesh.AddLine('z', metal.zmax - target_cellsize)
else:
target_cellsize_z = min(target_cellsize, metal_thickness)
add_equal_meshlines(mesh, 'z', metal.zmin, metal.zmax, target_cellsize_z)
else:
# via
mesh.AddLine('z', metal.zmin)
mesh.AddLine('z', metal.zmax)
for dielectric in dielectrics_list.dielectrics:
if dielectric.name not in exclude_list:
# mesh dielectric layers
if dielectric.is_top:
# Air: fill UPWARDS with increasing mesh size
# if we have an antenna, we can start counting the antenna_margin at the bottom of the air layer
stackup_layers = mesh_stackup_layers()
# note:
# metal layers are already when creating mesh_stackup_layers()
# and for adjacent dielectrics, mesh size is set boundary
for i, stackup_layer in enumerate(stackup_layers.stackup_layers):
zmax = stackup_layer.dielectric.zmax
zmin = stackup_layer.dielectric.zmin
target_cellsize_z = min(target_cellsize, zmax-zmin)
if not stackup_layer.metal_inside:
# check if we have extra margins for antenna simulation, then we push out the top and bottom boundary
if stackup_layer.dielectric.is_top:
# zmax = max(stackup_layer.dielectric.zmax, stackup_layer.dielectric.zmin + antenna_margin)
zmax = zmax + antenna_margin
elif stackup_layer.dielectric.is_bottom:
zmin = zmin - antenna_margin
# place mesh line at interface
mesh.AddLine('z', zmin)
mesh.AddLine('z', zmax)
if stackup_layer.meshsize_bottom > 0:
mesh.AddLine('z', zmin+stackup_layer.meshsize_bottom)
if stackup_layer.meshsize_top > 0:
mesh.AddLine('z', zmin+stackup_layer.meshsize_top)
add_graded_meshlines (mesh, 'z', dielectric.zmin, max(dielectric.zmax, dielectric.zmin + antenna_margin), 1.5*target_cellsize, 1.3, max_cellsize)
elif dielectric.is_bottom:
# Sub: fill DOWNWARDS with increasing mesh size
lastcell = add_graded_meshlines (mesh, 'z', dielectric.zmax, dielectric.zmin, -1.5*target_cellsize, 1.3, -max_cellsize)
if antenna_margin > 0:
add_graded_meshlines (mesh, 'z', dielectric.zmin, dielectric.zmin-antenna_margin, lastcell, 1.3, -max_cellsize)
else:
add_equal_meshlines (mesh, 'z', dielectric.zmin, dielectric.zmax, target_cellsize)
# check for possible gaps
def add_missing_lines (direction):
@ -64,11 +150,11 @@ def create_z_mesh(mesh, dielectrics_list, metals_list, target_cellsize, max_cell
check_z = True
while check_z:
check_z = add_missing_lines('z')
# add mesh line at bottom of stackup at z=0
mesh.AddLine('z', 0.0)
# mesh.SmoothMeshLines('z', max_cellsize, 1.3)
mesh.SmoothMeshLines('z', max_cellsize, 1.3)
return mesh
@ -78,20 +164,19 @@ def create_standard_xy_mesh(mesh, allpolygons, margin, antenna_margin, target_ce
oversize = margin + antenna_margin
# geometry region
add_equal_meshlines(mesh, 'x', allpolygons.xmin, allpolygons.xmax, target_cellsize)
add_equal_meshlines(mesh, 'y', allpolygons.ymin, allpolygons.ymax, target_cellsize)
add_equal_meshlines(mesh, 'x', allpolygons.get_xmin(), allpolygons.get_xmax(), target_cellsize)
add_equal_meshlines(mesh, 'y', allpolygons.get_ymin(), allpolygons.get_ymax(), target_cellsize)
# margins
add_graded_meshlines (mesh, 'x', allpolygons.xmin, allpolygons.xmin - oversize, -1.5*target_cellsize, 1.3, -max_cellsize)
add_graded_meshlines (mesh, 'x', allpolygons.xmax, allpolygons.xmax + oversize, 1.5*target_cellsize, 1.3, max_cellsize)
add_graded_meshlines (mesh, 'x', allpolygons.get_xmin(), allpolygons.get_xmin() - oversize, -1.5*target_cellsize, 1.3, -max_cellsize)
add_graded_meshlines (mesh, 'x', allpolygons.get_xmax(), allpolygons.get_xmax() + oversize, 1.5*target_cellsize, 1.3, max_cellsize)
add_graded_meshlines (mesh, 'y', allpolygons.ymin, allpolygons.ymin - oversize, -1.5*target_cellsize, 1.3, -max_cellsize)
add_graded_meshlines (mesh, 'y', allpolygons.ymax, allpolygons.ymax + oversize, 1.5*target_cellsize, 1.3, max_cellsize)
add_graded_meshlines (mesh, 'y', allpolygons.get_ymin(), allpolygons.get_ymin() - oversize, -1.5*target_cellsize, 1.3, -max_cellsize)
add_graded_meshlines (mesh, 'y', allpolygons.get_ymax(), allpolygons.get_ymax() + oversize, 1.5*target_cellsize, 1.3, max_cellsize)
return mesh
def create_xy_mesh_from_polygons (mesh, allpolygons, margin, antenna_margin, target_cellsize, max_cellsize):
class weighted_meshline:
@ -160,17 +245,17 @@ def create_xy_mesh_from_polygons (mesh, allpolygons, margin, antenna_margin, tar
# outer simulation boundary
oversize = margin
weighted_meshlines_x.addPolyEdge(allpolygons.xmin - oversize)
weighted_meshlines_x.addPolyEdge(allpolygons.xmax + oversize)
weighted_meshlines_y.addPolyEdge(allpolygons.ymin - oversize)
weighted_meshlines_y.addPolyEdge(allpolygons.ymax + oversize)
weighted_meshlines_x.addPolyEdge(allpolygons.get_xmin() - oversize)
weighted_meshlines_x.addPolyEdge(allpolygons.get_xmax() + oversize)
weighted_meshlines_y.addPolyEdge(allpolygons.get_ymin() - oversize)
weighted_meshlines_y.addPolyEdge(allpolygons.get_ymax() + oversize)
if antenna_margin>0:
oversize = margin + antenna_margin
weighted_meshlines_x.addPolyEdge(allpolygons.xmin - oversize)
weighted_meshlines_x.addPolyEdge(allpolygons.xmax + oversize)
weighted_meshlines_y.addPolyEdge(allpolygons.ymin - oversize)
weighted_meshlines_y.addPolyEdge(allpolygons.ymax + oversize)
weighted_meshlines_x.addPolyEdge(allpolygons.get_xmin() - oversize)
weighted_meshlines_x.addPolyEdge(allpolygons.get_xmax() + oversize)
weighted_meshlines_y.addPolyEdge(allpolygons.get_ymin() - oversize)
weighted_meshlines_y.addPolyEdge(allpolygons.get_ymax() + oversize)
# step 1: create lines at all polygon edges
@ -187,25 +272,30 @@ def create_xy_mesh_from_polygons (mesh, allpolygons, margin, antenna_margin, tar
else: # regular polygon
weighted_meshlines_x.addPolyEdge(point)
# add small cell left and right
if point > allpolygons.xmin:
if point > allpolygons.get_xmin():
weighted_meshlines_x.addFill(point-target_cellsize)
if point < allpolygons.xmax:
if point < allpolygons.get_xmax():
weighted_meshlines_x.addFill(point+target_cellsize)
for point in poly.pts_y:
if poly.is_port: # highest priority in meshing
weighted_meshlines_y.addPortEdge(point)
else: # regular polygon
weighted_meshlines_y.addPolyEdge(point)
if point > allpolygons.ymin:
if point > allpolygons.get_ymin():
weighted_meshlines_y.addFill(point-target_cellsize)
if point < allpolygons.ymax:
if point < allpolygons.get_ymax():
weighted_meshlines_y.addFill(point+target_cellsize)
# special case port, the polygon is then a rectangle and we want to insert one extra mesh line in the middle
if poly.is_port:
weighted_meshlines_x.addFill((min(poly.pts_x)+max(poly.pts_x))/2)
weighted_meshlines_y.addFill((min(poly.pts_y)+max(poly.pts_y))/2)
# get orientation, place extra mesh line along the short axis
size_x = poly.xmax - poly.xmin
size_y = poly.ymax - poly.ymin
if size_x > size_y:
weighted_meshlines_y.addFill((min(poly.pts_y)+max(poly.pts_y))/2)
else:
weighted_meshlines_x.addFill((min(poly.pts_x)+max(poly.pts_x))/2)
@ -317,8 +407,8 @@ def create_xy_mesh_from_polygons (mesh, allpolygons, margin, antenna_margin, tar
mesh.AddLine(direction, point)
add_extra_lines('x', allpolygons.xmin, allpolygons.xmax)
add_extra_lines('y', allpolygons.ymin, allpolygons.ymax)
add_extra_lines('x', allpolygons.get_xmin(), allpolygons.get_xmax())
add_extra_lines('y', allpolygons.get_ymin(), allpolygons.get_ymax())
mesh.SmoothMeshLines('x', max_cellsize, 1.3)
mesh.SmoothMeshLines('y', max_cellsize, 1.3)
@ -367,11 +457,15 @@ def add_equal_meshlines(mesh, axis, start, stop, target_cellsize):
"""
Adds a number of equally spaced meshlines
"""
# calculate required number of mesh cells
n = int(abs((math.ceil((stop-start)/target_cellsize)+1)))
points = np.linspace(start, stop, n)
for point in points:
mesh.AddLine(axis, point)
if stop-start > 1.5 * target_cellsize:
# calculate required number of mesh cells
n = int(abs((math.ceil((stop-start)/target_cellsize)+1)))
points = np.linspace(start, stop, n)
for point in points:
mesh.AddLine(axis, point)
else:
mesh.AddLine(axis, start)
mesh.AddLine(axis, stop)

View File

@ -1,18 +1,34 @@
# -*- coding: utf-8 -*-
########################################################################
#
# Copyright 2025 Volker Muehlhaus and IHP PDK Authors
#
# Licensed under the GNU General Public License, Version 3.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.gnu.org/licenses/gpl-3.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
########################################################################
import os
import util_stackup_reader as stackup_reader
import util_gds_reader as gds_reader
import util_utilities as utilities
import util_meshlines
from . import util_utilities as utilities
from . import util_meshlines
from pylab import *
from CSXCAD import ContinuousStructure
from CSXCAD import AppCSXCAD_BIN
from openEMS import openEMS
from openEMS.physical_constants import *
import numpy as np
class simulation_port:
"""
@ -69,6 +85,152 @@ class all_simulation_ports:
def get_port_by_number (self, portnum):
return self.ports[portnum-1]
def apply_layernumber_offset (self, offset):
newportlayers = []
for port in self.ports:
port.source_layernum = port.source_layernum + offset
newportlayers.append(port.source_layernum)
self.portlayers = newportlayers
def all_active_excitations (self):
"""Get all active port excitations, i.e. ports with voltage other than zero
Returns:
list of simulation_port: active port instances
"""
numbers = []
for port in self.ports:
if abs(port.voltage) > 1E-6:
# skip zero voltage ports for excitation
# append as list, we need that for create_palace() function
numbers.append([port.portnumber])
return numbers
'''
openEMS dump types:
* 0 : for E-field time-domain dump (default)
* 1 : for H-field time-domain dump
* 2 : for electric current time-domain dump
* 3 : for total current density (rot(H)) time-domain dump
* 10 : for E-field frequency-domain dump
* 11 : for H-field frequency-domain dump
* 12 : for electric current frequency-domain dump
* 13 : for total current density (rot(H)) frequency-domain dump
* 20 : local SAR frequency-domain dump
* 21 : 1g averaging SAR frequency-domain dump
* 22 : 10g averaging SAR frequency-domain dump
* 29 : raw data needed for SAR calculations (electric field FD, cell volume, conductivity and density)
openEMS dump modes:
* 0 : no-interpolation
* 1 : node-interpolation (default, see warning below)
* 2 : cell-interpolation (see warning below)
openEMS file types:
* 0 : vtk-file (default)
* 1 : hdf5-file (easier to read by python, using h5py)
'''
class dump():
def __init__ (self, name, file_type, dump_type, source_layernum, from_layername, to_layername, offset_top, offset_bottom, sub_sampling):
self.name = name
# allow string names for filetype also
if file_type == 'vtk':
file_type=0
elif file_type == 'hdf5':
file_type=1
if file_type not in [0,1]:
print('Invalid dump filetype specified for ', name)
exit(1)
self.file_type = file_type
self.source_layernum = source_layernum
self.from_layername=from_layername
self.to_layername=to_layername
self.offset_top = offset_top
self.offset_bottom = offset_bottom
self.subsampling = sub_sampling
class time_dump(dump):
def __init__ (self, name, file_type, dump_type, source_layernum, from_layername, to_layername, offset_top, offset_bottom, sub_sampling):
super().__init__(name, file_type, dump_type, source_layernum, from_layername, to_layername, offset_top, offset_bottom, sub_sampling)
# allow string names for dumptype also
if dump_type == 'E' or dump_type == 'Et':
dump_type=0
elif dump_type == 'H' or dump_type == 'Ht':
dump_type=1
elif dump_type == 'J' or dump_type == 'Jt':
dump_type=2
elif dump_type == 'rotH' or dump_type == 'rotHt':
dump_type=3
self.dump_type = dump_type
if dump_type not in [0,1,2,3]:
print('Invalid dumptype specified for time domain dump ', name)
exit(1)
class frequency_dump(dump):
def __init__ (self, name, frequency, file_type, dump_type, source_layernum, from_layername='', to_layername='', offset_top=0, offset_bottom=0, sub_sampling=[1,1,1]):
super().__init__(name, file_type, dump_type, source_layernum, from_layername, to_layername, offset_top, offset_bottom, sub_sampling)
self.frequency = frequency
# allow string names for dumptype also
if dump_type == 'E' or dump_type == 'Ef':
dump_type=10
elif dump_type == 'H' or dump_type == 'Hf':
dump_type=11
elif dump_type == 'J' or dump_type == 'Jf':
dump_type=12
elif dump_type == 'rotH' or dump_type == 'rotHf':
dump_type=13
self.dump_type = dump_type
if dump_type not in [10,11,12,13]:
print('Invalid dumptype specified for frequency domain dump ', name)
exit(1)
class all_field_dumps():
def __init__ (self):
self.field_dumps = []
self.dumplayers = []
self.count = 0
def add_dump (self, dump):
self.field_dumps.append(dump)
self.count = len(self.field_dumps)
self.dumplayers.append(dump.source_layernum)
def add_frequency_dump (self, name, frequency, file_type, dump_type, source_layernum, from_layername='', to_layername='', offset_top=0, offset_bottom=0, sub_sampling=[1,1,1]):
self.field_dumps.append(frequency_dump(name=name, frequency=frequency, file_type=file_type, dump_type=dump_type, source_layernum=source_layernum, from_layername=from_layername, to_layername=to_layername, offset_top=offset_top, offset_bottom=offset_bottom, sub_sampling=sub_sampling))
self.count = len(self.field_dumps)
self.dumplayers.append(source_layernum)
def add_time_dump (self, name, file_type, dump_type, source_layernum, from_layername='', to_layername='', offset_top=0, offset_bottom=0, sub_sampling=[1,1,1]):
self.field_dumps.append(time_dump(name=name, file_type=file_type, dump_type=dump_type, source_layernum=source_layernum, from_layername=from_layername, to_layername=to_layername, offset_top=offset_top, offset_bottom=offset_bottom, sub_sampling=sub_sampling))
self.count = len(self.field_dumps)
self.dumplayers.append(source_layernum)
def addGeometry_to_CSX (CSX, excite_portnumbers,simulation_ports,FDTD, materials_list, dielectrics_list, metals_list, allpolygons):
@ -87,22 +249,58 @@ def addGeometry_to_CSX (CSX, excite_portnumbers,simulation_ports,FDTD, materials
if all_assigned != None:
for metal in all_assigned:
materialname = metal.material
# check for openEMS CSX material object that belongs to this material name
if materialname in CSX_materials_list.keys():
# already in list, was used before
CSX_material = CSX_materials_list[materialname]
# check for stackup defintions that are not compatible with this workflow
if not metal.is_sheet:
# check for openEMS CSX material object that belongs to this material name
if materialname in CSX_materials_list.keys():
# already in list, was used before
CSX_material = CSX_materials_list[materialname]
else:
# create CSX material, was not used before
material = materials_list.get_by_name(materialname)
CSX_material = CSX.AddMaterial(material.name, kappa=material.sigma, epsilon=material.eps)
CSX_materials_list.update({material.name: CSX_material})
# set color for IHP layers, if available, so that we see that color in AppCSXCAD 3D view
if material.color != "":
CSX_material.SetColor('#' + material.color, 255) # transparency value 255 = solid
# add Polygon to CSX
# remember value for MA meshing algorithm, which works on CSX polygons rather than our GDS polygons
p = CSX_material.AddLinPoly(priority=200, points=poly.pts, norm_dir ='z', elevation=metal.zmin, length=metal.thickness)
poly.CSXpoly = p
else:
# create CSX material, was not used before
print('Sheet material assigned to layer', metal.name)
# create a unique material defintion for this layer
# get thickness of layer definition
thickness = metal.zmax - metal.zmin # should always be zero for sheet
# get material type
material = materials_list.get_by_name(materialname)
CSX_material = CSX.AddMaterial(material.name, kappa=material.sigma, epsilon=material.eps)
CSX_materials_list.update({material.name: CSX_material})
# set color for IHP layers, if available, so that we see that color in AppCSXCAD 3D view
if material.color != "":
CSX_material.SetColor('#' + material.color, 255) # transparency value 255 = solid
# add Polygon to CSX
CSX_material.AddLinPoly(priority=200, points=poly.pts, norm_dir ='z', elevation=metal.zmin, length=metal.thickness)
if material.type == 'RESISTOR' and material.Rs>0 :
# define conducting sheet with sigma calculated from material Rs value and thickness from layer
if thickness==0:
# thickness not specified in stackup
thickness=1e-6 # assume 1 micron for loss calculation, we then calculate Sigma to obtain desired Rs
sigma = 1/(thickness*material.Rs)
CSX_material = CSX.AddConductingSheet(metal.name + '_' + material.name, conductivity=sigma, thickness=thickness)
CSX_materials_list.update({material.name: CSX_material})
else:
print('WARNING: Invalid material assigned to layer ', metal.name)
print(str(material))
print('=====> MATERIAL IS REPLACED BY PEC (PERFECT CONDUCTOR) <=====')
CSX_material = CSX.AddMaterial('PEC_' + material.name)
CSX_materials_list.update({material.name: CSX_material})
# add Polygon to CSX but no thickness
# remember value for MA meshing algorithm, which works on CSX polygons rather than our GDS polygons
p = CSX_material.AddLinPoly(priority=200, points=poly.pts, norm_dir ='z', elevation=metal.zmin, length=0)
poly.CSXpoly = p
return CSX, CSX_materials_list
@ -111,29 +309,33 @@ def addDielectrics_to_CSX (CSX, CSX_materials_list, materials_list, dielectrics
for dielectric in dielectrics_list.dielectrics:
# get CSX material object for this dielectric layers material name
materialname = dielectric.material
material = materials_list.get_by_name(materialname)
materialname = dielectric.name
material = materials_list.get_by_name(dielectric.material)
if material is None:
print('ERROR: Material ', materialname, 'for dielectric layer ', dielectric.name, ' is not defined in stackup file. ')
exit(1)
if materialname in CSX_materials_list.keys():
# already defined in CSX materials, was used before
CSX_material = CSX_materials_list[materialname]
else:
# create CSX material, was not used before
CSX_material = CSX.AddMaterial(material.name, kappa=material.sigma, epsilon=material.eps)
CSX_materials_list.update({material.name: CSX_material})
# set color for IHP layers, if available
if material.color != "":
CSX_material.SetColor('#' + material.color, 20) # transparency value 20, very transparent
# create new material per layer, so that we can enable/disable them in appCSXCAD when used more than once
materialname = materialname + '_1'
# create CSX material
CSX_material = CSX.AddMaterial(materialname, kappa=material.sigma, epsilon=material.eps)
CSX_materials_list.update({materialname: CSX_material})
# set color for IHP layers, if available
if material.color != "":
CSX_material.SetColor('#' + material.color, 20) # transparency value 20, very transparent
# now that we have a CSX material, add the dielectric body (substrate, oxide etc)
CSX_material.AddBox(priority=10, start=[allpolygons.xmin - margin, allpolygons.ymin - margin, dielectric.zmin], stop=[allpolygons.xmax + margin, allpolygons.ymax + margin, dielectric.zmax])
bbox_xmin, bbox_xmax, bbox_ymin, bbox_ymax = allpolygons.bounding_box.get_layer_bounding_box(dielectric.gdsboundary)
CSX_material.AddBox(priority=10, start=[bbox_xmin - margin, bbox_ymin - margin, dielectric.zmin], stop=[bbox_xmax + margin, bbox_ymax + margin, dielectric.zmax])
# Optional: add a layer of PEC with zero thickness below stackup
# This is useful if we have air layer around for absorbing boundaries (antenna simulation)
if addPEC:
PEC = CSX.AddMetal( 'PEC_bottom' )
PEC.SetColor('#ffffff', 50)
PEC.AddBox(priority=255, start=[allpolygons.xmin - margin, allpolygons.ymin - margin, 0], stop=[allpolygons.xmax + margin, allpolygons.ymax + margin, 0])
PEC.SetColor("#ffffff", 50)
PEC.AddBox(priority=255, start=[bbox_xmin - margin, bbox_ymin - margin, 0], stop=[bbox_xmax + margin, bbox_ymax + margin, 0])
return CSX, CSX_materials_list
@ -151,74 +353,74 @@ def addPorts_to_CSX (CSX, excite_portnumbers,simulation_ports,FDTD, materials_li
metal = metals_list.getbylayernumber (poly.layernum)
if metal == None: # this layer does not exist in XML stackup
# found a layer that is not defined in stackup from XML, check if used for ports
if poly.layernum in simulation_ports.portlayers:
# find port definition for this GDSII source layer number
port = simulation_ports.get_port_by_layernumber(poly.layernum)
if port is not None:
# mark polygon for special handling in meshing
poly.is_port = True
# find port definition for this GDSII source layer number
port = simulation_ports.get_port_by_layernumber(poly.layernum)
if port != None:
portnum = port.portnumber
port_direction = port.direction
port_Z0 = port.port_Z0
if portnum in excite_portnumbers: # list of excited ports, this can be more than one port number for GSG with composite ports
voltage = port.voltage # only apply source voltage to ports that are excited in this simulation run
portnum = port.portnumber
port_direction = port.direction
port_Z0 = port.port_Z0
if portnum in excite_portnumbers: # list of excited ports, this can be more than one port number for GSG with composite ports
voltage = port.voltage # only apply source voltage to ports that are excited in this simulation run
else:
voltage = 0 # passive port in this simulation run
if port.reversed_direction: # port direction changes polarity
xmin = poly.xmax
xmax = poly.xmin
ymin = poly.ymax
ymax = poly.ymin
else:
xmin = poly.xmin
xmax = poly.xmax
ymin = poly.ymin
ymax = poly.ymax
# port z coordinates are different between in-plane ports and via ports
if port.target_layername != None:
# in-plane port
port_metal = metals_list.getbylayername(port.target_layername)
zmin = port_metal.zmin
zmax = port_metal.zmax
else:
# via port
if port.from_layername == 'GND': # special case bottom of simulation box
zmin_from = 0
zmax_from = 0
else:
voltage = 0 # passive port in this simulation run
if port.reversed_direction: # port direction changes polarity
xmin = poly.xmax
xmax = poly.xmin
ymin = poly.ymax
ymax = poly.ymin
else:
xmin = poly.xmin
xmax = poly.xmax
ymin = poly.ymin
ymax = poly.ymax
# port z coordinates are different between in-plane ports and via ports
if port.target_layername != None:
# in-plane port
port_metal = metals_list.getbylayername(port.target_layername)
zmin = port_metal.zmin
zmax = port_metal.zmax
else:
# via port
if port.from_layername == 'GND': # special case bottom of simulation box
zmin_from = 0
zmax_from = 0
else:
from_metal = metals_list.getbylayername(port.from_layername)
if from_metal==None:
from_metal = metals_list.getbylayername(port.from_layername)
if from_metal==None:
print('[ERROR] Invalid layer ' , port.from_layername, ' in port definition, not found in XML stackup file!')
sys.exit(1)
zmin_from = from_metal.zmin
zmax_from = from_metal.zmax
if port.to_layername == 'GND': # special case bottom of simulation box
zmin_to = 0
zmax_to = 0
else:
to_metal = metals_list.getbylayername(port.to_layername)
if to_metal==None:
zmin_from = from_metal.zmin
zmax_from = from_metal.zmax
if port.to_layername == 'GND': # special case bottom of simulation box
zmin_to = 0
zmax_to = 0
else:
to_metal = metals_list.getbylayername(port.to_layername)
if to_metal==None:
print('[ERROR] Invalid layer ' , port.to_layername, ' in port definition, not found in XML stackup file!')
sys.exit(1)
zmin_to = to_metal.zmin
zmax_to = to_metal.zmax
# if necessary, swap from and to position
if zmin_from < zmin_to:
# from layer is lower layer
zmin = zmax_from
zmax = zmin_to
else:
# to layer is lower layer
zmin = zmax_to
zmax = zmin_from
zmin_to = to_metal.zmin
zmax_to = to_metal.zmax
# if necessary, swap from and to position
if zmin_from < zmin_to:
# from layer is lower layer
zmin = zmax_from
zmax = zmin_to
else:
# to layer is lower layer
zmin = zmax_to
zmax = zmin_from
CSX_port = FDTD.AddLumpedPort(portnum, port_Z0, [xmin, ymin, zmin], [xmax, ymax, zmax], port_direction, voltage, priority=150)
# store CSX_port in the port object, for evaluation later
port.set_CSXport(CSX_port)
CSX_port = FDTD.AddLumpedPort(portnum, port_Z0, [xmin, ymin, zmin], [xmax, ymax, zmax], port_direction, voltage, priority=150)
# store CSX_port in the port object, for evaluation later
port.set_CSXport(CSX_port)
@ -226,33 +428,115 @@ def addPorts_to_CSX (CSX, excite_portnumbers,simulation_ports,FDTD, materials_li
def addMesh_to_CSX (CSX, allpolygons, dielectrics_list, metals_list, refined_cellsize, max_cellsize, margin, air_around, unit, z_mesh_function, xy_mesh_function):
# Add mesh using default method
mesh = CSX.GetGrid()
mesh.SetDeltaUnit(unit)
# meshing of dielectrics and metals
no_z_mesh_list = ['SiO2','LBE'] # exclude SiO2 from meshing because we only mesh metal layers in that region, exclude LBE because we mesh substrate
no_z_mesh_list = [] # exclude from meshing, specify stackup layer name here
mesh = z_mesh_function (mesh, dielectrics_list, metals_list, refined_cellsize, max_cellsize, air_around, no_z_mesh_list)
mesh = xy_mesh_function (mesh, allpolygons, margin, air_around, refined_cellsize, max_cellsize)
return mesh
def addFielddumps_to_CSX (FDTD, CSX, all_field_dumps, allpolygons, metals_list):
# Add field dumps for time and frequency domain and nf2ff, if any
if all_field_dumps.count > 0:
for field_dump in all_field_dumps.field_dumps:
if isinstance(field_dump, time_dump):
Dump = CSX.AddDump(field_dump.name,
file_type=field_dump.file_type,
dump_type=field_dump.dump_type,
sub_sampling=field_dump.subsampling)
elif isinstance(field_dump, frequency_dump):
Dump = CSX.AddDump(field_dump.name,
file_type=field_dump.file_type,
dump_type=field_dump.dump_type,
frequency=field_dump.frequency,
sub_sampling=field_dump.subsampling)
# add dump box
xmin, xmax, ymin, ymax = allpolygons.get_layer_bounding_box(field_dump.source_layernum)
zmin = metals_list.getbylayername(field_dump.from_layername).zmin + field_dump.offset_bottom
zmax = metals_list.getbylayername(field_dump.to_layername).zmax + field_dump.offset_top
Dump.AddBox([xmin,ymin,zmin], [xmax,ymax,zmax])
def setupSimulation (excite_portnumbers=None,
simulation_ports=None,
FDTD=None,
materials_list=None,
dielectrics_list=None,
metals_list=None,
allpolygons=None,
max_cellsize=None,
refined_cellsize=None,
margin=None,
unit=None,
z_mesh_function=util_meshlines.create_z_mesh,
xy_mesh_function=util_meshlines.create_standard_xy_mesh,
air_around=0,
field_dumps=False,
settings=None):
# This is the unction for model creation because we need to create and run separate CSX
# for each excitation. For S11,S21 we only need to excite port 1, but for S22,S12
# we need to excite port 2. This requires separate CSX with different port settings.
# This function can be called in two ways:
# 1) by all those positional parameters or
# 2) by passing just FDTD and settings dictionary, where everything is inside the settings dict
if dielectrics_list is None:
if settings is not None:
print('Getting simulation settings from "settings" dictionary')
# This is option 2, everything is inside the settings dict and we need to get it from there
excite_portnumbers = settings['excite_portnumbers']
simulation_ports = settings['simulation_ports']
materials_list = settings['materials_list']
dielectrics_list = settings['dielectrics_list']
metals_list = settings['metals_list']
allpolygons = settings['allpolygons']
refined_cellsize = settings['refined_cellsize']
margin = settings['margin']
unit = settings['unit']
z_mesh_function = settings.get('z_mesh_function',util_meshlines.create_z_mesh)
xy_mesh_function = settings.get('xy_mesh_function', util_meshlines.create_xy_mesh_from_polygons)
air_around = settings.get('air_around', 0)
field_dumps = settings.get('field_dumps', False)
# calculate maximum cellsize from wavelength in dielectric
fstop = settings.get('fstop',None)
unit = settings.get('unit',None)
cpw = settings.get('cells_per_wavelength',None)
if (fstop is not None) and (unit is not None) and (cpw is not None):
wavelength_air = 3e8/fstop / unit
max_cellsize = (wavelength_air)/(np.sqrt(materials_list.eps_max)*cpw)
else:
max_cellsize = settings.get('max_cellsize',None)
if max_cellsize is None:
print('If fstop, units and cells_per_wavelength are not included in settings, you must specify max_cellsize value')
exit(1)
else:
print('If positional parameters are not defined in setupSimulation, you must provide valid "settings" dictionary instead')
exit(1)
if FDTD is None:
print('FDTD must be passed to setupSimulation as named parameter, i.e. "FDTD=FDTD" in parameters')
exit(1)
def setupSimulation (excite_portnumbers,simulation_ports, FDTD, materials_list, dielectrics_list, metals_list, allpolygons, max_cellsize, refined_cellsize, margin, unit, z_mesh_function=util_meshlines.create_z_mesh, xy_mesh_function=util_meshlines.create_standard_xy_mesh, air_around=0):
# Define function for model creation because we need to create and run separate CSX
# for each excitation. For S11,S21 we only need to excite port 1, but for S22,S12
# we need to excite port 2. This requires separate CSX with different port settings.
CSX = ContinuousStructure()
FDTD.SetCSX(CSX)
# add geometries and return list of used materials
CSX, CSX_materials_list = addGeometry_to_CSX (CSX, excite_portnumbers,simulation_ports,FDTD, materials_list, dielectrics_list, metals_list, allpolygons)
CSX, CSX_materials_list = addDielectrics_to_CSX (CSX, CSX_materials_list, materials_list, dielectrics_list, allpolygons, margin, addPEC=(air_around>0))
CSX, CSX_materials_list = addDielectrics_to_CSX (CSX, CSX_materials_list, materials_list, dielectrics_list, allpolygons, margin, addPEC=False)
# add ports
CSX = addPorts_to_CSX (CSX, excite_portnumbers,simulation_ports,FDTD, materials_list, dielectrics_list, metals_list, allpolygons)
@ -263,7 +547,8 @@ def setupSimulation (excite_portnumbers,simulation_ports, FDTD, materials_list,
for poly in allpolygons.polygons:
layernum = poly.layernum
metal = metals_list.getbylayernumber(layernum)
if metal != None:
if metal is not None:
metal.is_used = True
# set polygon via property, used later for meshing
poly.is_via = metal.is_via
@ -271,6 +556,9 @@ def setupSimulation (excite_portnumbers,simulation_ports, FDTD, materials_list,
# add mesh
mesh = addMesh_to_CSX (CSX, allpolygons, dielectrics_list, metals_list, refined_cellsize, max_cellsize, margin, air_around, unit, z_mesh_function, xy_mesh_function )
if field_dumps != False:
addFielddumps_to_CSX (FDTD, CSX, field_dumps, allpolygons, metals_list)
# display mesh information (line count and smallest mesh cells)
meshinfo = util_meshlines.get_mesh_information(mesh)
print(meshinfo)
@ -278,8 +566,48 @@ def setupSimulation (excite_portnumbers,simulation_ports, FDTD, materials_list,
return FDTD
def runSimulation (excite_portnumbers, FDTD, sim_path, model_basename, preview_only, postprocess_only):
def runSimulation (excite_portnumbers=None,
FDTD=None,
sim_path=None,
model_basename=None,
preview_only=None,
postprocess_only=None,
force_simulation=False,
no_gui = False,
settings=None):
# This function runs the actual simulation in openEMS
# This function can be called in two ways:
# 1) by all those positional parameters or
# 2) by passing just FDTD and settings dictionary, where everything is inside the settings dict
if excite_portnumbers is None:
if settings is not None:
print('Getting simulation settings from "settings" dictionary')
# This is option 2, everything is inside the settings dict and we need to get it from there
excite_portnumbers = settings['excite_portnumbers']
sim_path = settings['sim_path']
model_basename = settings['model_basename']
preview_only = settings.get('preview_only',False)
postprocess_only = settings.get('postprocess_only','')
force_simulation = settings.get('force_simulation', False)
no_gui = settings.get('no_gui', False)
else:
print('If positional parameters are not defined in setupSimulation, you must provide valid "settings" dictionary instead')
exit(1)
if FDTD is None:
print('FDTD must be passed to setupSimulation as named parameter, i.e. "FDTD=FDTD" in parameters')
exit(1)
# If no_gui is enabled, always start simulation even if preview_only is True
# and force re-simulation, even if results already exist
if no_gui:
preview_only = False
postprocess_only = False
excitation_path = utilities.get_excitation_path (sim_path, excite_portnumbers)
if not postprocess_only:
@ -289,25 +617,157 @@ def runSimulation (excite_portnumbers, FDTD, sim_path, model_basename, preview_o
CSX.Write2XML(CSX_file)
# preview model
if 1 in excite_portnumbers: # only for first port excitation
if 1 in excite_portnumbers and not no_gui: # only for first port excitation
print('Starting AppCSXCAD 3D viewer with file: \n', CSX_file)
print('Close AppCSXCAD to continue or press <Ctrl>-C to abort')
ret = os.system(AppCSXCAD_BIN + ' "{}"'.format(CSX_file))
# for Linux, send warningas and errors to nowhere, so that we don't trash console with vtk warnings
if os.name == 'posix':
suffix = ' 2>/dev/null'
else:
suffix = ''
ret = os.system(AppCSXCAD_BIN + ' "{}"'.format(CSX_file) + suffix)
if ret != 0:
print('[ERROR] AppCSXCAD failed to launch. Exit code: ', ret)
sys.exit(1)
if not (preview_only or postprocess_only): # start simulation
print('Starting FDTD simulation for excitation ', str(excite_portnumbers))
try:
FDTD.Run(excitation_path) # DO NOT SPECIFY COMMAND LINE OPTIONS HERE! That will fail for repeated runs with multiple excitations.
print('FDTD simulation completed successfully for excitation ', str(excite_portnumbers))
except AssertionError as e:
print('[ERROR] AssertionError during FDTD simulation: ', e)
sys.exit(1)
# Check if we can read a hash file from the result folder
existing_data_hash = get_hash_from_data_folder(excitation_path)
# Create hash of newly created CSX file, we will store that to result folder when simulation is finished.
# This will enable checking for pre-existing data of the exact same model.
XML_hash = calculate_sha256_of_file(CSX_file)
if (existing_data_hash != XML_hash) or force_simulation:
# Hash is different or not found, or simulation is forced
print('Starting FDTD simulation for excitation ', str(excite_portnumbers))
try:
FDTD.Run(excitation_path) # DO NOT SPECIFY COMMAND LINE OPTIONS HERE! That will fail for repeated runs with multiple excitations.
print('FDTD simulation completed successfully for excitation ', str(excite_portnumbers))
# Now that simulation created output data, write the hash of the underlying XML model. This will help to identify existing data for this model.
write_hash_to_data_folder(excitation_path, XML_hash)
except AssertionError as e:
print('[ERROR] AssertionError during FDTD simulation: ', e)
sys.exit(1)
else:
print('Data for this model already exists, skipping simulation!')
print('To force re-simulation, add parameter "force_simulation=True" to the runSimulation() call.')
return excitation_path
return excitation_path
def runOpenEMS (excite_ports, settings):
# This is the all-in-one simulation function that creates openEMS model and runs all ports, on eafter another
# get settings from simulation model
preview_only = settings.get('preview_only', False)
postprocess_only = settings.get('postprocess_only', False)
######### end of function createSimulation () ##########
if not postprocess_only:
unit = settings.get('unit', 1e-6) # unit defaults to micron
margin = settings['margin'] # oversize of dielectric layers relative to drawing
fstart = settings['fstart']
fstop = settings['fstop']
numfreq = settings.get('numfreq', 401)
energy_limit = settings['energy_limit']
refined_cellsize = settings['refined_cellsize']
cells_per_wavelength = settings['cells_per_wavelength']
Boundaries = settings['Boundaries']
simulation_ports = settings['simulation_ports']
materials_list = settings['materials_list']
dielectrics_list = settings['dielectrics_list']
metals_list = settings['metals_list']
allpolygons = settings['allpolygons']
sim_path = settings['sim_path']
model_basename = settings['model_basename']
# calculate wavelength and max_cellsize in project units
wavelength_air = 3e8/fstop / unit
max_cellsize = (wavelength_air)/(np.sqrt(materials_list.eps_max)*cells_per_wavelength)
# define excitation and stop criteria and boundaries
FDTD = openEMS(EndCriteria=np.exp(energy_limit/10 * np.log(10)))
FDTD.SetGaussExcite( (fstart+fstop)/2, (fstop-fstart)/2 )
FDTD.SetBoundaryCond( Boundaries )
for port in simulation_ports.ports:
setupSimulation ([port.portnumber],
simulation_ports,
FDTD,
materials_list,
dielectrics_list,
metals_list,
allpolygons,
max_cellsize,
refined_cellsize,
margin,
unit,
xy_mesh_function=util_meshlines.create_xy_mesh_from_polygons)
runSimulation ([port.portnumber],
FDTD,
sim_path,
model_basename,
preview_only,
False)
# Initialize an empty matrix for S-parameters
num_ports = simulation_ports.portcount
s_params = np.empty((num_ports, num_ports, numfreq), dtype=object)
# Define frequency resolution. Due to FFT from Empire time domain results,
# this is postprocessing and we can change it again at any time.
f = np.linspace(fstart, fstop, numfreq)
# Populate the S-parameter matrix with simulation results
for i in range(1, num_ports + 1):
for j in range(1, num_ports + 1):
s_params[i-1, j-1] = utilities.calculate_Sij(i, j, f, sim_path, simulation_ports)
# Write to Touchstone *.snp file
snp_name = os.path.join(sim_path, model_basename + '.s' + str(num_ports) + 'p')
utilities.write_snp(s_params, f, snp_name)
print('Created S-parameter output file at ', snp_name)
# Utility functions for hash file.
# By creating and storing a hash of CSX file to the result folder when simulation is finished,
# we can identify pre-existing data of the exact same model. In this case, we can skip simulation.
def calculate_sha256_of_file(filename):
import hashlib
sha256_hash = hashlib.sha256()
with open(filename, 'rb') as f:
for byte_block in iter(lambda: f.read(4096), b""):
sha256_hash.update(byte_block)
return sha256_hash.hexdigest()
def write_hash_to_data_folder (excitation_path, hash_value):
filename = os.path.join(excitation_path, 'simulation_model.hash')
hashfile = open(filename, 'w')
hashfile.write(str(hash_value))
hashfile.close()
def get_hash_from_data_folder (excitation_path):
filename = os.path.join(excitation_path, 'simulation_model.hash')
hashvalue = ''
if os.path.isfile(filename):
hashfile = open(filename, "r")
hashvalue = hashfile.read()
hashfile.close()
return hashvalue

View File

@ -1,5 +1,22 @@
# Read XML file with SG13G2 stackup
########################################################################
#
# Copyright 2025 Volker Muehlhaus and IHP PDK Authors
#
# Licensed under the GNU General Public License, Version 3.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.gnu.org/licenses/gpl-3.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
########################################################################
# Read XML file with SG13G2 stackup
# File history:
# Initial version 20 Nov 2024 Volker Muehlhaus
@ -13,14 +30,24 @@ class stackup_material:
"""
stackup material object
"""
def __init__ (self, data):
def safe_get (key, default):
val = data.get(key)
if val is not None:
return val
else:
return default
self.name = data.get("Name")
self.type = data.get("Type")
self.eps = float(data.get("Permittivity"))
self.tand = float(data.get("DielectricLossTangent"))
self.sigma = float(data.get("Conductivity"))
self.color = data.get("Color")
self.type = data.get("Type").upper()
self.eps = float(safe_get("Permittivity", 1))
self.tand = float(safe_get("DielectricLossTangent", 0))
self.sigma = float(safe_get("Conductivity", 0))
self.Rs = float(safe_get("Rs", 0))
self.color = data.get("Color") # no default here, will be handled later
def __str__ (self):
@ -70,6 +97,7 @@ class dielectric_layer:
self.zmax = 0
self.is_top = False
self.is_bottom = False
self.gdsboundary = data.get("Boundary") # optional entry in stackup file
def __str__ (self):
# string representation
@ -104,8 +132,19 @@ class dielectric_layers_list:
for dielectric in self.dielectrics:
if dielectric.name == name_to_find:
found = dielectric
return dielectric
return found
def get_boundary_layers (self):
# For substrates where Boundary is specified in dielectric layers, return a list of those layers
# This is required for the next step, GDSII reader, which needs to know the layers to read.
boundary_layer_list = []
for dielectric in self.dielectrics:
if dielectric.gdsboundary is not None:
value = int(dielectric.gdsboundary)
if value not in boundary_layer_list:
boundary_layer_list.append(value)
return boundary_layer_list
# -------------------- conductor layers (metal and via) ---------------------------
@ -118,13 +157,24 @@ class metal_layer:
def __init__ (self, data):
self.name = data.get("Name")
self.layernum = data.get("Layer")
self.type = data.get("Type")
self.type = data.get("Type").upper()
self.material = data.get("Material")
self.zmin = float(data.get("Zmin"))
self.zmax = float(data.get("Zmax"))
# force to sheet if zero thickness
if data.get("Zmin") == data.get("Zmax"):
self.type = "SHEET"
if self.type == "SHEET" and not self.zmin==self.zmax:
print('ERROR: Layer ', self.name, ' is defined as sheet layer, but Zmax is different from Zmin. This is not valid!')
exit(1)
self.thickness = self.zmax-self.zmin
self.is_via = (self.type=="via")
self.is_metal = (self.type=="conductor")
self.is_via = (self.type=="VIA")
self.is_metal = (self.type=="CONDUCTOR")
self.is_dielectric = (self.type=="DIELECTRIC")
self.is_sheet = (self.type=="SHEET")
self.is_used = False
def __str__ (self):
@ -187,7 +237,6 @@ class metal_layers_list:
metal.zmax = metal.zmax + offset
# ----------- parse substrate file, get materials from list created before -----------
def read_substrate (XML_filename):
@ -248,7 +297,7 @@ def read_substrate (XML_filename):
if __name__ == "__main__":
XML_filename = "SG13.xml"
XML_filename = "SG13G2.xml"
materials_list, dielectrics_list, metals_list = read_substrate (XML_filename)
for material in materials_list.materials:
@ -274,5 +323,4 @@ if __name__ == "__main__":
print('TopMetal1 layer number => ', metal.layernum)

View File

@ -1,4 +1,20 @@
# -*- coding: utf-8 -*-
########################################################################
#
# Copyright 2025 Volker Muehlhaus and IHP PDK Authors
#
# Licensed under the GNU General Public License, Version 3.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.gnu.org/licenses/gpl-3.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
########################################################################
import os, tempfile, platform, sys

View File

@ -1,403 +1,403 @@
# Hz S RI R 50
!
0.000000e+00 -3.301067e-01 0.000000e+00 6.647242e-01 0.000000e+00 6.653174e-01 0.000000e+00 6.647244e-01 0.000000e+00 -3.301069e-01 0.000000e+00 6.653176e-01 0.000000e+00 6.653394e-01 0.000000e+00 6.653394e-01 0.000000e+00 -3.306875e-01 0.000000e+00
8.750000e+08 -3.301042e-01 1.026324e-03 6.647225e-01 -8.653752e-04 6.653164e-01 -7.032434e-04 6.647227e-01 -8.653192e-04 -3.301043e-01 1.027096e-03 6.653165e-01 -7.034854e-04 6.653382e-01 -7.051357e-04 6.653383e-01 -7.055236e-04 -3.306856e-01 8.628588e-04
1.750000e+09 -3.300965e-01 2.052423e-03 6.647175e-01 -1.730602e-03 6.653132e-01 -1.406404e-03 6.647177e-01 -1.730490e-03 -3.300967e-01 2.053967e-03 6.653134e-01 -1.406888e-03 6.653347e-01 -1.410162e-03 6.653348e-01 -1.410938e-03 -3.306801e-01 1.725572e-03
2.625000e+09 -3.300838e-01 3.078074e-03 6.647091e-01 -2.595532e-03 6.653080e-01 -2.109398e-03 6.647093e-01 -2.595365e-03 -3.300839e-01 3.080389e-03 6.653082e-01 -2.110124e-03 6.653289e-01 -2.114970e-03 6.653289e-01 -2.116134e-03 -3.306709e-01 2.587994e-03
3.500000e+09 -3.300660e-01 4.103055e-03 6.646974e-01 -3.460022e-03 6.653007e-01 -2.812146e-03 6.646976e-01 -3.459798e-03 -3.300662e-01 4.106141e-03 6.653009e-01 -2.813114e-03 6.653208e-01 -2.819454e-03 6.653208e-01 -2.821005e-03 -3.306580e-01 3.449982e-03
4.375000e+09 -3.300433e-01 5.127152e-03 6.646824e-01 -4.323929e-03 6.652914e-01 -3.514566e-03 6.646827e-01 -4.323650e-03 -3.300434e-01 5.131009e-03 6.652916e-01 -3.515776e-03 6.653104e-01 -3.523510e-03 6.653104e-01 -3.525448e-03 -3.306415e-01 4.311396e-03
5.250000e+09 -3.300157e-01 6.150157e-03 6.646643e-01 -5.187116e-03 6.652801e-01 -4.216582e-03 6.646645e-01 -5.186782e-03 -3.300158e-01 6.154784e-03 6.652802e-01 -4.218034e-03 6.652978e-01 -4.227036e-03 6.652978e-01 -4.229361e-03 -3.306214e-01 5.172100e-03
6.125000e+09 -3.299833e-01 7.171871e-03 6.646430e-01 -6.049454e-03 6.652667e-01 -4.918119e-03 6.646432e-01 -6.049065e-03 -3.299833e-01 7.177268e-03 6.652669e-01 -4.919812e-03 6.652830e-01 -4.929937e-03 6.652830e-01 -4.932648e-03 -3.305978e-01 6.031961e-03
7.000000e+09 -3.299462e-01 8.192105e-03 6.646186e-01 -6.910817e-03 6.652514e-01 -5.619103e-03 6.646188e-01 -6.910374e-03 -3.299462e-01 8.198269e-03 6.652516e-01 -5.621039e-03 6.652661e-01 -5.632121e-03 6.652661e-01 -5.635218e-03 -3.305708e-01 6.890852e-03
7.875000e+09 -3.299045e-01 9.210678e-03 6.645912e-01 -7.771090e-03 6.652342e-01 -6.319469e-03 6.645914e-01 -7.770593e-03 -3.299045e-01 9.217611e-03 6.652343e-01 -6.321646e-03 6.652471e-01 -6.333504e-03 6.652470e-01 -6.336986e-03 -3.305403e-01 7.748653e-03
8.750000e+09 -3.298584e-01 1.022743e-02 6.645608e-01 -8.630164e-03 6.652151e-01 -7.019149e-03 6.645611e-01 -8.629613e-03 -3.298584e-01 1.023513e-02 6.652152e-01 -7.021568e-03 6.652260e-01 -7.034005e-03 6.652260e-01 -7.037872e-03 -3.305066e-01 8.605249e-03
9.625000e+09 -3.298080e-01 1.124220e-02 6.645277e-01 -9.487941e-03 6.651942e-01 -7.718086e-03 6.645280e-01 -9.487337e-03 -3.298079e-01 1.125066e-02 6.651943e-01 -7.720746e-03 6.652031e-01 -7.733553e-03 6.652030e-01 -7.737805e-03 -3.304696e-01 9.460534e-03
1.050000e+10 -3.297535e-01 1.225485e-02 6.644919e-01 -1.034433e-02 6.651715e-01 -8.416223e-03 6.644922e-01 -1.034368e-02 -3.297534e-01 1.226408e-02 6.651716e-01 -8.419124e-03 6.651783e-01 -8.432083e-03 6.651782e-01 -8.436718e-03 -3.304295e-01 1.031441e-02
1.137500e+10 -3.296949e-01 1.326526e-02 6.644534e-01 -1.119926e-02 6.651471e-01 -9.113509e-03 6.644537e-01 -1.119855e-02 -3.296948e-01 1.327526e-02 6.651472e-01 -9.116652e-03 6.651517e-01 -9.129537e-03 6.651516e-01 -9.134554e-03 -3.303864e-01 1.116678e-02
1.225000e+10 -3.296326e-01 1.427333e-02 6.644124e-01 -1.205265e-02 6.651210e-01 -9.809900e-03 6.644128e-01 -1.205189e-02 -3.296325e-01 1.428408e-02 6.651211e-01 -9.813283e-03 6.651234e-01 -9.825865e-03 6.651233e-01 -9.831264e-03 -3.303403e-01 1.201757e-02
1.312500e+10 -3.295667e-01 1.527896e-02 6.643691e-01 -1.290445e-02 6.650933e-01 -1.050535e-02 6.643695e-01 -1.290364e-02 -3.295665e-01 1.529047e-02 6.650934e-01 -1.050898e-02 6.650935e-01 -1.052103e-02 6.650933e-01 -1.052681e-02 -3.302914e-01 1.286670e-02
1.400000e+10 -3.294973e-01 1.628207e-02 6.643235e-01 -1.375462e-02 6.650641e-01 -1.119984e-02 6.643239e-01 -1.375376e-02 -3.294970e-01 1.629434e-02 6.650642e-01 -1.120370e-02 6.650620e-01 -1.121499e-02 6.650619e-01 -1.122115e-02 -3.302398e-01 1.371412e-02
1.487500e+10 -3.294246e-01 1.728260e-02 6.642758e-01 -1.460312e-02 6.650334e-01 -1.189332e-02 6.642761e-01 -1.460220e-02 -3.294243e-01 1.729564e-02 6.650335e-01 -1.189742e-02 6.650291e-01 -1.190772e-02 6.650289e-01 -1.191426e-02 -3.301856e-01 1.455975e-02
1.575000e+10 -3.293488e-01 1.828052e-02 6.642260e-01 -1.544991e-02 6.650013e-01 -1.258578e-02 6.642264e-01 -1.544895e-02 -3.293485e-01 1.829431e-02 6.650013e-01 -1.259012e-02 6.649949e-01 -1.259921e-02 6.649947e-01 -1.260613e-02 -3.301288e-01 1.540357e-02
1.662500e+10 -3.292702e-01 1.927579e-02 6.641743e-01 -1.629500e-02 6.649678e-01 -1.327719e-02 6.641747e-01 -1.629399e-02 -3.292697e-01 1.929033e-02 6.649678e-01 -1.328178e-02 6.649594e-01 -1.328945e-02 6.649591e-01 -1.329675e-02 -3.300697e-01 1.624553e-02
1.750000e+10 -3.291887e-01 2.026840e-02 6.641208e-01 -1.713838e-02 6.649330e-01 -1.396755e-02 6.641212e-01 -1.713732e-02 -3.291882e-01 2.028370e-02 6.649330e-01 -1.397237e-02 6.649226e-01 -1.397844e-02 6.649223e-01 -1.398612e-02 -3.300083e-01 1.708560e-02
1.837500e+10 -3.291047e-01 2.125835e-02 6.640656e-01 -1.798005e-02 6.648969e-01 -1.465684e-02 6.640660e-01 -1.797894e-02 -3.291042e-01 2.127440e-02 6.648970e-01 -1.466190e-02 6.648848e-01 -1.466618e-02 6.648845e-01 -1.467423e-02 -3.299448e-01 1.792377e-02
1.925000e+10 -3.290183e-01 2.224566e-02 6.640088e-01 -1.882002e-02 6.648597e-01 -1.534506e-02 6.640093e-01 -1.881887e-02 -3.290177e-01 2.226246e-02 6.648598e-01 -1.535037e-02 6.648459e-01 -1.535268e-02 6.648456e-01 -1.536111e-02 -3.298792e-01 1.876002e-02
2.012500e+10 -3.289297e-01 2.323036e-02 6.639506e-01 -1.965833e-02 6.648214e-01 -1.603222e-02 6.639511e-01 -1.965714e-02 -3.289290e-01 2.324791e-02 6.648215e-01 -1.603776e-02 6.648061e-01 -1.603797e-02 6.648057e-01 -1.604677e-02 -3.298117e-01 1.959437e-02
2.100000e+10 -3.288390e-01 2.421249e-02 6.638910e-01 -2.049501e-02 6.647820e-01 -1.671831e-02 6.638915e-01 -2.049377e-02 -3.288382e-01 2.423079e-02 6.647821e-01 -1.672410e-02 6.647654e-01 -1.672206e-02 6.647649e-01 -1.673124e-02 -3.297423e-01 2.042680e-02
2.187500e+10 -3.287463e-01 2.519210e-02 6.638300e-01 -2.133009e-02 6.647417e-01 -1.740336e-02 6.638306e-01 -2.132881e-02 -3.287455e-01 2.521114e-02 6.647417e-01 -1.740939e-02 6.647238e-01 -1.740500e-02 6.647234e-01 -1.741455e-02 -3.296712e-01 2.125734e-02
2.275000e+10 -3.286519e-01 2.616925e-02 6.637679e-01 -2.216363e-02 6.647003e-01 -1.808737e-02 6.637685e-01 -2.216230e-02 -3.286510e-01 2.618905e-02 6.647003e-01 -1.809364e-02 6.646815e-01 -1.808681e-02 6.646811e-01 -1.809673e-02 -3.295984e-01 2.208601e-02
2.362500e+10 -3.285558e-01 2.714403e-02 6.637047e-01 -2.299567e-02 6.646581e-01 -1.877037e-02 6.637053e-01 -2.299430e-02 -3.285548e-01 2.716456e-02 6.646581e-01 -1.877687e-02 6.646386e-01 -1.876753e-02 6.646380e-01 -1.877783e-02 -3.295242e-01 2.291283e-02
2.450000e+10 -3.284581e-01 2.811650e-02 6.636404e-01 -2.382628e-02 6.646150e-01 -1.945237e-02 6.636410e-01 -2.382487e-02 -3.284570e-01 2.813778e-02 6.646150e-01 -1.945912e-02 6.645949e-01 -1.944722e-02 6.645944e-01 -1.945789e-02 -3.294484e-01 2.373784e-02
2.537500e+10 -3.283590e-01 2.908676e-02 6.635751e-01 -2.465552e-02 6.645711e-01 -2.013341e-02 6.635758e-01 -2.465407e-02 -3.283578e-01 2.910878e-02 6.645711e-01 -2.014039e-02 6.645507e-01 -2.012592e-02 6.645501e-01 -2.013696e-02 -3.293714e-01 2.456109e-02
2.625000e+10 -3.282585e-01 3.005490e-02 6.635090e-01 -2.548346e-02 6.645265e-01 -2.081351e-02 6.635096e-01 -2.548196e-02 -3.282573e-01 3.007767e-02 6.645264e-01 -2.082073e-02 6.645059e-01 -2.080367e-02 6.645053e-01 -2.081508e-02 -3.292930e-01 2.538261e-02
2.712500e+10 -3.281568e-01 3.102102e-02 6.634419e-01 -2.631015e-02 6.644811e-01 -2.149269e-02 6.634426e-01 -2.630862e-02 -3.281555e-01 3.104453e-02 6.644811e-01 -2.150015e-02 6.644606e-01 -2.148054e-02 6.644599e-01 -2.149232e-02 -3.292134e-01 2.620245e-02
2.800000e+10 -3.280539e-01 3.198523e-02 6.633740e-01 -2.713569e-02 6.644350e-01 -2.217100e-02 6.633747e-01 -2.713411e-02 -3.280525e-01 3.200947e-02 6.644350e-01 -2.217870e-02 6.644148e-01 -2.215657e-02 6.644141e-01 -2.216872e-02 -3.291327e-01 2.702067e-02
2.887500e+10 -3.279499e-01 3.294762e-02 6.633053e-01 -2.796014e-02 6.643883e-01 -2.284848e-02 6.633061e-01 -2.795852e-02 -3.279484e-01 3.297261e-02 6.643883e-01 -2.285642e-02 6.643685e-01 -2.283182e-02 6.643678e-01 -2.284434e-02 -3.290510e-01 2.783733e-02
2.975000e+10 -3.278448e-01 3.390831e-02 6.632359e-01 -2.878357e-02 6.643410e-01 -2.352514e-02 6.632366e-01 -2.878191e-02 -3.278432e-01 3.393404e-02 6.643409e-01 -2.353332e-02 6.643218e-01 -2.350635e-02 6.643210e-01 -2.351924e-02 -3.289682e-01 2.865248e-02
3.062500e+10 -3.277387e-01 3.486741e-02 6.631657e-01 -2.960606e-02 6.642930e-01 -2.420104e-02 6.631665e-01 -2.960436e-02 -3.277371e-01 3.489387e-02 6.642929e-01 -2.420946e-02 6.642747e-01 -2.418021e-02 6.642739e-01 -2.419347e-02 -3.288844e-01 2.946619e-02
3.150000e+10 -3.276316e-01 3.582501e-02 6.630948e-01 -3.042768e-02 6.642445e-01 -2.487621e-02 6.630956e-01 -3.042594e-02 -3.276299e-01 3.585221e-02 6.642444e-01 -2.488487e-02 6.642272e-01 -2.485345e-02 6.642263e-01 -2.486709e-02 -3.287998e-01 3.027852e-02
3.237500e+10 -3.275236e-01 3.678123e-02 6.630231e-01 -3.124850e-02 6.641954e-01 -2.555070e-02 6.630240e-01 -3.124673e-02 -3.275218e-01 3.680917e-02 6.641953e-01 -2.555960e-02 6.641792e-01 -2.552614e-02 6.641783e-01 -2.554014e-02 -3.287142e-01 3.108954e-02
3.325000e+10 -3.274146e-01 3.773618e-02 6.629508e-01 -3.206860e-02 6.641458e-01 -2.622453e-02 6.629517e-01 -3.206678e-02 -3.274127e-01 3.776485e-02 6.641457e-01 -2.623367e-02 6.641308e-01 -2.619832e-02 6.641298e-01 -2.621269e-02 -3.286278e-01 3.189930e-02
3.412500e+10 -3.273047e-01 3.868994e-02 6.628777e-01 -3.288804e-02 6.640956e-01 -2.689776e-02 6.628786e-01 -3.288618e-02 -3.273027e-01 3.871935e-02 6.640955e-01 -2.690713e-02 6.640820e-01 -2.687005e-02 6.640810e-01 -2.688479e-02 -3.285406e-01 3.270789e-02
3.500000e+10 -3.271938e-01 3.964263e-02 6.628039e-01 -3.370689e-02 6.640449e-01 -2.757041e-02 6.628048e-01 -3.370499e-02 -3.271918e-01 3.967277e-02 6.640448e-01 -2.758002e-02 6.640328e-01 -2.754137e-02 6.640318e-01 -2.755648e-02 -3.284526e-01 3.351535e-02
3.587500e+10 -3.270820e-01 4.059433e-02 6.627294e-01 -3.452520e-02 6.639937e-01 -2.824253e-02 6.627303e-01 -3.452326e-02 -3.270799e-01 4.062521e-02 6.639936e-01 -2.825238e-02 6.639832e-01 -2.821232e-02 6.639821e-01 -2.822780e-02 -3.283639e-01 3.432177e-02
3.675000e+10 -3.269693e-01 4.154514e-02 6.626540e-01 -3.534304e-02 6.639420e-01 -2.891415e-02 6.626550e-01 -3.534106e-02 -3.269670e-01 4.157675e-02 6.639418e-01 -2.892425e-02 6.639331e-01 -2.888297e-02 6.639319e-01 -2.889882e-02 -3.282743e-01 3.512719e-02
3.762500e+10 -3.268555e-01 4.249513e-02 6.625779e-01 -3.616045e-02 6.638897e-01 -2.958532e-02 6.625790e-01 -3.615845e-02 -3.268532e-01 4.252748e-02 6.638896e-01 -2.959566e-02 6.638825e-01 -2.955333e-02 6.638813e-01 -2.956955e-02 -3.281841e-01 3.593170e-02
3.850000e+10 -3.267408e-01 4.344439e-02 6.625010e-01 -3.697750e-02 6.638370e-01 -3.025607e-02 6.625021e-01 -3.697546e-02 -3.267383e-01 4.347748e-02 6.638368e-01 -3.026665e-02 6.638315e-01 -3.022346e-02 6.638302e-01 -3.024005e-02 -3.280930e-01 3.673534e-02
3.937500e+10 -3.266249e-01 4.439299e-02 6.624233e-01 -3.779423e-02 6.637837e-01 -3.092643e-02 6.624243e-01 -3.779214e-02 -3.266224e-01 4.442682e-02 6.637835e-01 -3.093725e-02 6.637799e-01 -3.089339e-02 6.637786e-01 -3.091035e-02 -3.280013e-01 3.753817e-02
4.025000e+10 -3.265080e-01 4.534100e-02 6.623446e-01 -3.861067e-02 6.637299e-01 -3.159643e-02 6.623457e-01 -3.860855e-02 -3.265054e-01 4.537556e-02 6.637297e-01 -3.160749e-02 6.637278e-01 -3.156315e-02 6.637264e-01 -3.158048e-02 -3.279087e-01 3.834026e-02
4.112500e+10 -3.263900e-01 4.628848e-02 6.622651e-01 -3.942687e-02 6.636756e-01 -3.226612e-02 6.622662e-01 -3.942471e-02 -3.263872e-01 4.632377e-02 6.636754e-01 -3.227741e-02 6.636751e-01 -3.223276e-02 6.636737e-01 -3.225046e-02 -3.278155e-01 3.914166e-02
4.200000e+10 -3.262707e-01 4.723548e-02 6.621846e-01 -4.024285e-02 6.636207e-01 -3.293550e-02 6.621858e-01 -4.024065e-02 -3.262679e-01 4.727151e-02 6.636205e-01 -3.294704e-02 6.636218e-01 -3.290225e-02 6.636204e-01 -3.292032e-02 -3.277214e-01 3.994242e-02
4.287500e+10 -3.261503e-01 4.818204e-02 6.621031e-01 -4.105865e-02 6.635653e-01 -3.360463e-02 6.621043e-01 -4.105641e-02 -3.261473e-01 4.821881e-02 6.635651e-01 -3.361641e-02 6.635680e-01 -3.357164e-02 6.635664e-01 -3.359009e-02 -3.276266e-01 4.074259e-02
4.375000e+10 -3.260286e-01 4.912822e-02 6.620206e-01 -4.187428e-02 6.635093e-01 -3.427351e-02 6.620219e-01 -4.187201e-02 -3.260255e-01 4.916573e-02 6.635091e-01 -3.428554e-02 6.635134e-01 -3.424096e-02 6.635118e-01 -3.425977e-02 -3.275310e-01 4.154221e-02
4.462500e+10 -3.259055e-01 5.007405e-02 6.619371e-01 -4.268977e-02 6.634527e-01 -3.494218e-02 6.619384e-01 -4.268746e-02 -3.259023e-01 5.011229e-02 6.634525e-01 -3.495445e-02 6.634582e-01 -3.491020e-02 6.634566e-01 -3.492939e-02 -3.274345e-01 4.234134e-02
4.550000e+10 -3.257811e-01 5.101955e-02 6.618524e-01 -4.350513e-02 6.633956e-01 -3.561066e-02 6.618538e-01 -4.350279e-02 -3.257778e-01 5.105853e-02 6.633953e-01 -3.562317e-02 6.634023e-01 -3.557939e-02 6.634006e-01 -3.559895e-02 -3.273372e-01 4.314000e-02
4.637500e+10 -3.256552e-01 5.196475e-02 6.617666e-01 -4.432037e-02 6.633378e-01 -3.627896e-02 6.617680e-01 -4.431799e-02 -3.256518e-01 5.200446e-02 6.633375e-01 -3.629171e-02 6.633457e-01 -3.624853e-02 6.633439e-01 -3.626846e-02 -3.272391e-01 4.393824e-02
4.725000e+10 -3.255279e-01 5.290967e-02 6.616797e-01 -4.513550e-02 6.632794e-01 -3.694711e-02 6.616811e-01 -4.513307e-02 -3.255243e-01 5.295012e-02 6.632791e-01 -3.696011e-02 6.632883e-01 -3.691763e-02 6.632865e-01 -3.693794e-02 -3.271400e-01 4.473608e-02
4.812500e+10 -3.253990e-01 5.385432e-02 6.615915e-01 -4.595051e-02 6.632203e-01 -3.761512e-02 6.615930e-01 -4.594805e-02 -3.253954e-01 5.389550e-02 6.632200e-01 -3.762836e-02 6.632301e-01 -3.758669e-02 6.632282e-01 -3.760737e-02 -3.270400e-01 4.553357e-02
4.900000e+10 -3.252685e-01 5.479869e-02 6.615021e-01 -4.676541e-02 6.631606e-01 -3.828301e-02 6.615036e-01 -4.676291e-02 -3.252648e-01 5.484061e-02 6.631603e-01 -3.829649e-02 6.631711e-01 -3.825571e-02 6.631692e-01 -3.827676e-02 -3.269391e-01 4.633072e-02
4.987500e+10 -3.251365e-01 5.574281e-02 6.614115e-01 -4.758019e-02 6.631002e-01 -3.895079e-02 6.614130e-01 -4.757765e-02 -3.251326e-01 5.578546e-02 6.630999e-01 -3.896451e-02 6.631113e-01 -3.892468e-02 6.631093e-01 -3.894610e-02 -3.268373e-01 4.712757e-02
5.075000e+10 -3.250027e-01 5.668665e-02 6.613195e-01 -4.839484e-02 6.630391e-01 -3.961846e-02 6.613211e-01 -4.839227e-02 -3.249987e-01 5.673005e-02 6.630387e-01 -3.963243e-02 6.630506e-01 -3.959360e-02 6.630485e-01 -3.961540e-02 -3.267344e-01 4.792412e-02
5.162500e+10 -3.248672e-01 5.763022e-02 6.612262e-01 -4.920936e-02 6.629773e-01 -4.028604e-02 6.612278e-01 -4.920675e-02 -3.248631e-01 5.767435e-02 6.629769e-01 -4.030025e-02 6.629891e-01 -4.026247e-02 6.629869e-01 -4.028464e-02 -3.266305e-01 4.872040e-02
5.250000e+10 -3.247300e-01 5.857351e-02 6.611316e-01 -5.002372e-02 6.629147e-01 -4.095353e-02 6.611332e-01 -5.002108e-02 -3.247258e-01 5.861837e-02 6.629144e-01 -4.096799e-02 6.629266e-01 -4.093126e-02 6.629244e-01 -4.095381e-02 -3.265255e-01 4.951643e-02
5.337500e+10 -3.245910e-01 5.951649e-02 6.610355e-01 -5.083792e-02 6.628515e-01 -4.162094e-02 6.610373e-01 -5.083524e-02 -3.245866e-01 5.956209e-02 6.628510e-01 -4.163564e-02 6.628633e-01 -4.159998e-02 6.628609e-01 -4.162290e-02 -3.264195e-01 5.031221e-02
5.425000e+10 -3.244502e-01 6.045915e-02 6.609381e-01 -5.165193e-02 6.627874e-01 -4.228827e-02 6.609399e-01 -5.164922e-02 -3.244457e-01 6.050549e-02 6.627870e-01 -4.230322e-02 6.627990e-01 -4.226861e-02 6.627966e-01 -4.229190e-02 -3.263123e-01 5.110776e-02
5.512500e+10 -3.243075e-01 6.140147e-02 6.608393e-01 -5.246574e-02 6.627225e-01 -4.295553e-02 6.608411e-01 -5.246299e-02 -3.243029e-01 6.144854e-02 6.627221e-01 -4.297072e-02 6.627337e-01 -4.293713e-02 6.627313e-01 -4.296080e-02 -3.262040e-01 5.190307e-02
5.600000e+10 -3.241630e-01 6.234342e-02 6.607390e-01 -5.327933e-02 6.626569e-01 -4.362271e-02 6.607409e-01 -5.327654e-02 -3.241582e-01 6.239124e-02 6.626564e-01 -4.363814e-02 6.626675e-01 -4.360553e-02 6.626650e-01 -4.362958e-02 -3.260946e-01 5.269816e-02
5.687500e+10 -3.240165e-01 6.328499e-02 6.606373e-01 -5.409268e-02 6.625904e-01 -4.428980e-02 6.606392e-01 -5.408985e-02 -3.240116e-01 6.333354e-02 6.625899e-01 -4.430548e-02 6.626004e-01 -4.427380e-02 6.625978e-01 -4.429822e-02 -3.259839e-01 5.349302e-02
5.775000e+10 -3.238682e-01 6.422614e-02 6.605341e-01 -5.490575e-02 6.625231e-01 -4.495682e-02 6.605361e-01 -5.490289e-02 -3.238631e-01 6.427542e-02 6.625226e-01 -4.497275e-02 6.625323e-01 -4.494192e-02 6.625296e-01 -4.496671e-02 -3.258721e-01 5.428766e-02
5.862500e+10 -3.237179e-01 6.516684e-02 6.604295e-01 -5.571854e-02 6.624550e-01 -4.562375e-02 6.604315e-01 -5.571564e-02 -3.237126e-01 6.521686e-02 6.624545e-01 -4.563992e-02 6.624632e-01 -4.560987e-02 6.624604e-01 -4.563504e-02 -3.257589e-01 5.508206e-02
5.950000e+10 -3.235656e-01 6.610707e-02 6.603234e-01 -5.653101e-02 6.623860e-01 -4.629059e-02 6.603255e-01 -5.652808e-02 -3.235603e-01 6.615783e-02 6.623855e-01 -4.630701e-02 6.623931e-01 -4.627764e-02 6.623903e-01 -4.630318e-02 -3.256446e-01 5.587623e-02
6.037500e+10 -3.234114e-01 6.704680e-02 6.602158e-01 -5.734315e-02 6.623162e-01 -4.695734e-02 6.602180e-01 -5.734018e-02 -3.234059e-01 6.709829e-02 6.623156e-01 -4.697400e-02 6.623221e-01 -4.694521e-02 6.623191e-01 -4.697113e-02 -3.255289e-01 5.667016e-02
6.125000e+10 -3.232553e-01 6.798599e-02 6.601068e-01 -5.815493e-02 6.622454e-01 -4.762398e-02 6.601090e-01 -5.815193e-02 -3.232496e-01 6.803822e-02 6.622449e-01 -4.764089e-02 6.622500e-01 -4.761256e-02 6.622470e-01 -4.763886e-02 -3.254120e-01 5.746384e-02
6.212500e+10 -3.230971e-01 6.892463e-02 6.599963e-01 -5.896633e-02 6.621738e-01 -4.829051e-02 6.599986e-01 -5.896329e-02 -3.230913e-01 6.897759e-02 6.621732e-01 -4.830767e-02 6.621771e-01 -4.827968e-02 6.621739e-01 -4.830635e-02 -3.252938e-01 5.825725e-02
6.300000e+10 -3.229371e-01 6.986267e-02 6.598844e-01 -5.977734e-02 6.621013e-01 -4.895692e-02 6.598867e-01 -5.977426e-02 -3.229311e-01 6.991638e-02 6.621007e-01 -4.897433e-02 6.621031e-01 -4.894656e-02 6.620999e-01 -4.897360e-02 -3.251742e-01 5.905040e-02
6.387500e+10 -3.227750e-01 7.080010e-02 6.597710e-01 -6.058791e-02 6.620280e-01 -4.962321e-02 6.597734e-01 -6.058480e-02 -3.227689e-01 7.085454e-02 6.620273e-01 -4.964087e-02 6.620282e-01 -4.961317e-02 6.620249e-01 -4.964059e-02 -3.250532e-01 5.984326e-02
6.475000e+10 -3.226111e-01 7.173689e-02 6.596562e-01 -6.139805e-02 6.619537e-01 -5.028936e-02 6.596586e-01 -6.139491e-02 -3.226048e-01 7.179206e-02 6.619530e-01 -5.030726e-02 6.619523e-01 -5.027951e-02 6.619489e-01 -5.030730e-02 -3.249309e-01 6.063582e-02
6.562500e+10 -3.224452e-01 7.267300e-02 6.595399e-01 -6.220773e-02 6.618785e-01 -5.095536e-02 6.595425e-01 -6.220455e-02 -3.224387e-01 7.272891e-02 6.618778e-01 -5.097351e-02 6.618755e-01 -5.094556e-02 6.618720e-01 -5.097373e-02 -3.248073e-01 6.142807e-02
6.650000e+10 -3.222773e-01 7.360842e-02 6.594223e-01 -6.301693e-02 6.618023e-01 -5.162120e-02 6.594249e-01 -6.301372e-02 -3.222707e-01 7.366506e-02 6.618016e-01 -5.163960e-02 6.617977e-01 -5.161131e-02 6.617942e-01 -5.163985e-02 -3.246823e-01 6.221999e-02
6.737500e+10 -3.221076e-01 7.454312e-02 6.593032e-01 -6.382565e-02 6.617253e-01 -5.228687e-02 6.593059e-01 -6.382240e-02 -3.221008e-01 7.460049e-02 6.617246e-01 -5.230553e-02 6.617191e-01 -5.227675e-02 6.617154e-01 -5.230567e-02 -3.245558e-01 6.301157e-02
6.825000e+10 -3.219359e-01 7.547709e-02 6.591828e-01 -6.463385e-02 6.616474e-01 -5.295237e-02 6.591855e-01 -6.463057e-02 -3.219290e-01 7.553519e-02 6.616466e-01 -5.297127e-02 6.616395e-01 -5.294187e-02 6.616357e-01 -5.297116e-02 -3.244280e-01 6.380278e-02
6.912500e+10 -3.217624e-01 7.641029e-02 6.590610e-01 -6.544154e-02 6.615685e-01 -5.361768e-02 6.590638e-01 -6.543823e-02 -3.217553e-01 7.646913e-02 6.615677e-01 -5.363683e-02 6.615590e-01 -5.360666e-02 6.615551e-01 -5.363633e-02 -3.242988e-01 6.459363e-02
7.000000e+10 -3.215871e-01 7.734273e-02 6.589378e-01 -6.624870e-02 6.614887e-01 -5.428279e-02 6.589407e-01 -6.624536e-02 -3.215798e-01 7.740230e-02 6.614879e-01 -5.430219e-02 6.614776e-01 -5.427112e-02 6.614736e-01 -5.430116e-02 -3.241682e-01 6.538408e-02
7.087500e+10 -3.214098e-01 7.827437e-02 6.588133e-01 -6.705533e-02 6.614081e-01 -5.494769e-02 6.588162e-01 -6.705195e-02 -3.214024e-01 7.833467e-02 6.614072e-01 -5.496734e-02 6.613953e-01 -5.493523e-02 6.613913e-01 -5.496565e-02 -3.240362e-01 6.617413e-02
7.175000e+10 -3.212308e-01 7.920521e-02 6.586875e-01 -6.786141e-02 6.613265e-01 -5.561238e-02 6.586905e-01 -6.785800e-02 -3.212232e-01 7.926625e-02 6.613256e-01 -5.563227e-02 6.613122e-01 -5.559900e-02 6.613080e-01 -5.562979e-02 -3.239028e-01 6.696375e-02
7.262500e+10 -3.210500e-01 8.013524e-02 6.585604e-01 -6.866694e-02 6.612440e-01 -5.627683e-02 6.585635e-01 -6.866350e-02 -3.210422e-01 8.019701e-02 6.612431e-01 -5.629698e-02 6.612283e-01 -5.626242e-02 6.612240e-01 -5.629359e-02 -3.237680e-01 6.775293e-02
7.350000e+10 -3.208674e-01 8.106445e-02 6.584321e-01 -6.947191e-02 6.611605e-01 -5.694104e-02 6.584352e-01 -6.946845e-02 -3.208594e-01 8.112694e-02 6.611596e-01 -5.696144e-02 6.611435e-01 -5.692549e-02 6.611391e-01 -5.695703e-02 -3.236318e-01 6.854166e-02
7.437500e+10 -3.206831e-01 8.199283e-02 6.583024e-01 -7.027633e-02 6.610762e-01 -5.760501e-02 6.583056e-01 -7.027283e-02 -3.206749e-01 8.205605e-02 6.610753e-01 -5.762566e-02 6.610579e-01 -5.758821e-02 6.610534e-01 -5.762012e-02 -3.234942e-01 6.932991e-02
7.525000e+10 -3.204970e-01 8.292037e-02 6.581716e-01 -7.108019e-02 6.609910e-01 -5.826872e-02 6.581748e-01 -7.107667e-02 -3.204886e-01 8.298432e-02 6.609900e-01 -5.828962e-02 6.609715e-01 -5.825058e-02 6.609668e-01 -5.828286e-02 -3.233553e-01 7.011769e-02
7.612500e+10 -3.203092e-01 8.384708e-02 6.580395e-01 -7.188350e-02 6.609049e-01 -5.893216e-02 6.580428e-01 -7.187994e-02 -3.203007e-01 8.391176e-02 6.609039e-01 -5.895332e-02 6.608843e-01 -5.891259e-02 6.608795e-01 -5.894525e-02 -3.232149e-01 7.090496e-02
7.700000e+10 -3.201198e-01 8.477295e-02 6.579062e-01 -7.268625e-02 6.608180e-01 -5.959534e-02 6.579096e-01 -7.268267e-02 -3.201110e-01 8.483835e-02 6.608169e-01 -5.961674e-02 6.607963e-01 -5.957426e-02 6.607914e-01 -5.960729e-02 -3.230732e-01 7.169172e-02
7.787500e+10 -3.199287e-01 8.569798e-02 6.577717e-01 -7.348845e-02 6.607301e-01 -6.025823e-02 6.577752e-01 -7.348484e-02 -3.199197e-01 8.576411e-02 6.607290e-01 -6.027988e-02 6.607075e-01 -6.023558e-02 6.607026e-01 -6.026899e-02 -3.229301e-01 7.247796e-02
7.875000e+10 -3.197359e-01 8.662218e-02 6.576360e-01 -7.429010e-02 6.606414e-01 -6.092084e-02 6.576396e-01 -7.428647e-02 -3.197268e-01 8.668904e-02 6.606403e-01 -6.094274e-02 6.606180e-01 -6.089657e-02 6.606129e-01 -6.093034e-02 -3.227857e-01 7.326366e-02
7.962500e+10 -3.195416e-01 8.754554e-02 6.574992e-01 -7.509122e-02 6.605518e-01 -6.158315e-02 6.575028e-01 -7.508755e-02 -3.195322e-01 8.761313e-02 6.605507e-01 -6.160531e-02 6.605278e-01 -6.155721e-02 6.605226e-01 -6.159136e-02 -3.226399e-01 7.404881e-02
8.050000e+10 -3.193456e-01 8.846809e-02 6.573612e-01 -7.589180e-02 6.604614e-01 -6.224517e-02 6.573650e-01 -7.588810e-02 -3.193360e-01 8.853640e-02 6.604602e-01 -6.226757e-02 6.604368e-01 -6.221753e-02 6.604315e-01 -6.225205e-02 -3.224928e-01 7.483341e-02
8.137500e+10 -3.191480e-01 8.938981e-02 6.572221e-01 -7.669185e-02 6.603701e-01 -6.290688e-02 6.572259e-01 -7.668813e-02 -3.191383e-01 8.945885e-02 6.603689e-01 -6.292954e-02 6.603451e-01 -6.287753e-02 6.603397e-01 -6.291242e-02 -3.223444e-01 7.561744e-02
8.225000e+10 -3.189489e-01 9.031073e-02 6.570819e-01 -7.749139e-02 6.602780e-01 -6.356828e-02 6.570858e-01 -7.748764e-02 -3.189390e-01 9.038049e-02 6.602767e-01 -6.359119e-02 6.602527e-01 -6.353721e-02 6.602471e-01 -6.357247e-02 -3.221947e-01 7.640089e-02
8.312500e+10 -3.187482e-01 9.123084e-02 6.569406e-01 -7.829041e-02 6.601851e-01 -6.422938e-02 6.569446e-01 -7.828664e-02 -3.187381e-01 9.130133e-02 6.601838e-01 -6.425254e-02 6.601596e-01 -6.419659e-02 6.601539e-01 -6.423222e-02 -3.220437e-01 7.718376e-02
8.400000e+10 -3.185460e-01 9.215017e-02 6.567982e-01 -7.908894e-02 6.600913e-01 -6.489016e-02 6.568022e-01 -7.908515e-02 -3.185357e-01 9.222137e-02 6.600900e-01 -6.491357e-02 6.600658e-01 -6.485566e-02 6.600600e-01 -6.489166e-02 -3.218914e-01 7.796604e-02
8.487500e+10 -3.183423e-01 9.306871e-02 6.566547e-01 -7.988698e-02 6.599968e-01 -6.555062e-02 6.566588e-01 -7.988316e-02 -3.183317e-01 9.314064e-02 6.599954e-01 -6.557429e-02 6.599713e-01 -6.551445e-02 6.599653e-01 -6.555082e-02 -3.217378e-01 7.874773e-02
8.575000e+10 -3.181371e-01 9.398649e-02 6.565101e-01 -8.068454e-02 6.599014e-01 -6.621076e-02 6.565143e-01 -8.068070e-02 -3.181263e-01 9.405914e-02 6.599000e-01 -6.623468e-02 6.598761e-01 -6.617295e-02 6.598700e-01 -6.620969e-02 -3.215830e-01 7.952882e-02
8.662500e+10 -3.179303e-01 9.490351e-02 6.563644e-01 -8.148163e-02 6.598052e-01 -6.687059e-02 6.563687e-01 -8.147777e-02 -3.179193e-01 9.497688e-02 6.598038e-01 -6.689476e-02 6.597802e-01 -6.683118e-02 6.597740e-01 -6.686829e-02 -3.214269e-01 8.030931e-02
8.750000e+10 -3.177221e-01 9.581979e-02 6.562177e-01 -8.227827e-02 6.597083e-01 -6.753009e-02 6.562220e-01 -8.227438e-02 -3.177108e-01 9.589388e-02 6.597068e-01 -6.755452e-02 6.596837e-01 -6.748914e-02 6.596773e-01 -6.752662e-02 -3.212696e-01 8.108919e-02
8.837500e+10 -3.175124e-01 9.673533e-02 6.560698e-01 -8.307445e-02 6.596106e-01 -6.818927e-02 6.560743e-01 -8.307054e-02 -3.175009e-01 9.681014e-02 6.596091e-01 -6.821395e-02 6.595864e-01 -6.814685e-02 6.595799e-01 -6.818469e-02 -3.211110e-01 8.186846e-02
8.925000e+10 -3.173011e-01 9.765015e-02 6.559209e-01 -8.387020e-02 6.595121e-01 -6.884814e-02 6.559255e-01 -8.386627e-02 -3.172895e-01 9.772568e-02 6.595106e-01 -6.887307e-02 6.594885e-01 -6.880430e-02 6.594819e-01 -6.884252e-02 -3.209513e-01 8.264712e-02
9.012500e+10 -3.170884e-01 9.856426e-02 6.557710e-01 -8.466552e-02 6.594129e-01 -6.950668e-02 6.557756e-01 -8.466157e-02 -3.170765e-01 9.864051e-02 6.594113e-01 -6.953186e-02 6.593899e-01 -6.946152e-02 6.593831e-01 -6.950010e-02 -3.207904e-01 8.342517e-02
9.100000e+10 -3.168743e-01 9.947768e-02 6.556200e-01 -8.546043e-02 6.593129e-01 -7.016490e-02 6.556247e-01 -8.545645e-02 -3.168621e-01 9.955464e-02 6.593113e-01 -7.019034e-02 6.592906e-01 -7.011851e-02 6.592837e-01 -7.015745e-02 -3.206282e-01 8.420262e-02
9.187500e+10 -3.166586e-01 1.003904e-01 6.554678e-01 -8.625492e-02 6.592122e-01 -7.082281e-02 6.554727e-01 -8.625092e-02 -3.166463e-01 1.004681e-01 6.592105e-01 -7.084850e-02 6.591907e-01 -7.077527e-02 6.591836e-01 -7.081458e-02 -3.204649e-01 8.497945e-02
9.275000e+10 -3.164415e-01 1.013025e-01 6.553147e-01 -8.704901e-02 6.591108e-01 -7.148040e-02 6.553196e-01 -8.704499e-02 -3.164289e-01 1.013809e-01 6.591090e-01 -7.150634e-02 6.590901e-01 -7.143181e-02 6.590828e-01 -7.147149e-02 -3.203005e-01 8.575568e-02
9.362500e+10 -3.162229e-01 1.022139e-01 6.551604e-01 -8.784271e-02 6.590086e-01 -7.213768e-02 6.551654e-01 -8.783867e-02 -3.162101e-01 1.022930e-01 6.590068e-01 -7.216388e-02 6.589887e-01 -7.208814e-02 6.589814e-01 -7.212818e-02 -3.201349e-01 8.653131e-02
9.450000e+10 -3.160028e-01 1.031246e-01 6.550051e-01 -8.863602e-02 6.589057e-01 -7.279465e-02 6.550102e-01 -8.863196e-02 -3.159897e-01 1.032044e-01 6.589039e-01 -7.282110e-02 6.588867e-01 -7.274426e-02 6.588792e-01 -7.278467e-02 -3.199681e-01 8.730634e-02
9.537500e+10 -3.157812e-01 1.040347e-01 6.548487e-01 -8.942895e-02 6.588020e-01 -7.345132e-02 6.548538e-01 -8.942488e-02 -3.157679e-01 1.041152e-01 6.588002e-01 -7.347802e-02 6.587840e-01 -7.340018e-02 6.587764e-01 -7.344096e-02 -3.198002e-01 8.808076e-02
9.625000e+10 -3.155582e-01 1.049441e-01 6.546911e-01 -9.022151e-02 6.586977e-01 -7.410768e-02 6.546964e-01 -9.021741e-02 -3.155446e-01 1.050254e-01 6.586958e-01 -7.413464e-02 6.586806e-01 -7.405591e-02 6.586728e-01 -7.409705e-02 -3.196312e-01 8.885460e-02
9.712500e+10 -3.153336e-01 1.058530e-01 6.545325e-01 -9.101369e-02 6.585926e-01 -7.476375e-02 6.545379e-01 -9.100958e-02 -3.153198e-01 1.059349e-01 6.585907e-01 -7.479096e-02 6.585765e-01 -7.471144e-02 6.585685e-01 -7.475295e-02 -3.194611e-01 8.962785e-02
9.800000e+10 -3.151075e-01 1.067611e-01 6.543728e-01 -9.180551e-02 6.584869e-01 -7.541952e-02 6.543782e-01 -9.180138e-02 -3.150935e-01 1.068438e-01 6.584849e-01 -7.544698e-02 6.584716e-01 -7.536679e-02 6.584636e-01 -7.540866e-02 -3.192899e-01 9.040051e-02
9.887500e+10 -3.148799e-01 1.076687e-01 6.542120e-01 -9.259697e-02 6.583804e-01 -7.607499e-02 6.542175e-01 -9.259282e-02 -3.148657e-01 1.077521e-01 6.583784e-01 -7.610271e-02 6.583661e-01 -7.602194e-02 6.583579e-01 -7.606418e-02 -3.191176e-01 9.117260e-02
9.975000e+10 -3.146509e-01 1.085757e-01 6.540500e-01 -9.338806e-02 6.582733e-01 -7.673019e-02 6.540556e-01 -9.338389e-02 -3.146363e-01 1.086598e-01 6.582712e-01 -7.675815e-02 6.582598e-01 -7.667691e-02 6.582514e-01 -7.671951e-02 -3.189442e-01 9.194411e-02
1.006250e+11 -3.144202e-01 1.094820e-01 6.538869e-01 -9.417878e-02 6.581655e-01 -7.738509e-02 6.538926e-01 -9.417460e-02 -3.144054e-01 1.095668e-01 6.581633e-01 -7.741331e-02 6.581528e-01 -7.733170e-02 6.581443e-01 -7.737466e-02 -3.187697e-01 9.271506e-02
1.015000e+11 -3.141881e-01 1.103877e-01 6.537227e-01 -9.496915e-02 6.580569e-01 -7.803972e-02 6.537285e-01 -9.496495e-02 -3.141730e-01 1.104732e-01 6.580548e-01 -7.806819e-02 6.580451e-01 -7.798630e-02 6.580364e-01 -7.802962e-02 -3.185941e-01 9.348544e-02
1.023750e+11 -3.139544e-01 1.112928e-01 6.535573e-01 -9.575914e-02 6.579477e-01 -7.869408e-02 6.535632e-01 -9.575493e-02 -3.139391e-01 1.113790e-01 6.579455e-01 -7.872280e-02 6.579367e-01 -7.864072e-02 6.579278e-01 -7.868440e-02 -3.184174e-01 9.425527e-02
1.032500e+11 -3.137191e-01 1.121973e-01 6.533908e-01 -9.654878e-02 6.578378e-01 -7.934816e-02 6.533968e-01 -9.654455e-02 -3.137036e-01 1.122842e-01 6.578356e-01 -7.937714e-02 6.578274e-01 -7.929495e-02 6.578184e-01 -7.933900e-02 -3.182397e-01 9.502455e-02
1.041250e+11 -3.134823e-01 1.131012e-01 6.532231e-01 -9.733804e-02 6.577272e-01 -8.000198e-02 6.532292e-01 -9.733380e-02 -3.134665e-01 1.131888e-01 6.577249e-01 -8.003121e-02 6.577175e-01 -7.994899e-02 6.577083e-01 -7.999340e-02 -3.180609e-01 9.579328e-02
1.050000e+11 -3.132439e-01 1.140044e-01 6.530543e-01 -9.812692e-02 6.576160e-01 -8.065553e-02 6.530605e-01 -9.812267e-02 -3.132279e-01 1.140927e-01 6.576136e-01 -8.068502e-02 6.576067e-01 -8.060284e-02 6.575974e-01 -8.064761e-02 -3.178810e-01 9.656148e-02
1.058750e+11 -3.130040e-01 1.149070e-01 6.528843e-01 -9.891543e-02 6.575040e-01 -8.130883e-02 6.528906e-01 -9.891116e-02 -3.129876e-01 1.149961e-01 6.575016e-01 -8.133857e-02 6.574952e-01 -8.125649e-02 6.574857e-01 -8.130162e-02 -3.177001e-01 9.732914e-02
1.067500e+11 -3.127625e-01 1.158090e-01 6.527131e-01 -9.970355e-02 6.573914e-01 -8.196187e-02 6.527195e-01 -9.969927e-02 -3.127458e-01 1.158988e-01 6.573889e-01 -8.199186e-02 6.573830e-01 -8.190995e-02 6.573733e-01 -8.195544e-02 -3.175180e-01 9.809628e-02
1.076250e+11 -3.125193e-01 1.167104e-01 6.525407e-01 -1.004913e-01 6.572781e-01 -8.261466e-02 6.525472e-01 -1.004870e-01 -3.125024e-01 1.168008e-01 6.572755e-01 -8.264490e-02 6.572699e-01 -8.256320e-02 6.572601e-01 -8.260905e-02 -3.173350e-01 9.886290e-02
1.085000e+11 -3.122746e-01 1.176111e-01 6.523671e-01 -1.012786e-01 6.571640e-01 -8.326720e-02 6.523737e-01 -1.012743e-01 -3.122574e-01 1.177022e-01 6.571614e-01 -8.329770e-02 6.571561e-01 -8.321624e-02 6.571461e-01 -8.326245e-02 -3.171508e-01 9.962900e-02
1.093750e+11 -3.120283e-01 1.185111e-01 6.521923e-01 -1.020655e-01 6.570493e-01 -8.391950e-02 6.521991e-01 -1.020612e-01 -3.120108e-01 1.186030e-01 6.570467e-01 -8.395025e-02 6.570415e-01 -8.386907e-02 6.570313e-01 -8.391564e-02 -3.169656e-01 1.003946e-01
1.102500e+11 -3.117803e-01 1.194105e-01 6.520164e-01 -1.028520e-01 6.569339e-01 -8.457155e-02 6.520232e-01 -1.028477e-01 -3.117626e-01 1.195031e-01 6.569312e-01 -8.460256e-02 6.569261e-01 -8.452168e-02 6.569157e-01 -8.456861e-02 -3.167793e-01 1.011597e-01
1.111250e+11 -3.115308e-01 1.203092e-01 6.518392e-01 -1.036381e-01 6.568179e-01 -8.522337e-02 6.518461e-01 -1.036338e-01 -3.115128e-01 1.204025e-01 6.568151e-01 -8.525463e-02 6.568099e-01 -8.517406e-02 6.567994e-01 -8.522134e-02 -3.165920e-01 1.019243e-01
1.120000e+11 -3.112796e-01 1.212073e-01 6.516608e-01 -1.044238e-01 6.567011e-01 -8.587495e-02 6.516678e-01 -1.044194e-01 -3.112613e-01 1.213012e-01 6.566983e-01 -8.590646e-02 6.566929e-01 -8.582621e-02 6.566822e-01 -8.587385e-02 -3.164036e-01 1.026884e-01
1.128750e+11 -3.110268e-01 1.221046e-01 6.514812e-01 -1.052090e-01 6.565836e-01 -8.652629e-02 6.514883e-01 -1.052046e-01 -3.110083e-01 1.221993e-01 6.565807e-01 -8.655805e-02 6.565752e-01 -8.647812e-02 6.565643e-01 -8.652611e-02 -3.162141e-01 1.034519e-01
1.137500e+11 -3.107724e-01 1.230013e-01 6.513004e-01 -1.059937e-01 6.564654e-01 -8.717740e-02 6.513076e-01 -1.059894e-01 -3.107535e-01 1.230966e-01 6.564625e-01 -8.720941e-02 6.564566e-01 -8.712978e-02 6.564455e-01 -8.717813e-02 -3.160235e-01 1.042151e-01
1.146250e+11 -3.105164e-01 1.238972e-01 6.511184e-01 -1.067780e-01 6.563466e-01 -8.782828e-02 6.511257e-01 -1.067737e-01 -3.104972e-01 1.239933e-01 6.563436e-01 -8.786054e-02 6.563372e-01 -8.778118e-02 6.563259e-01 -8.782989e-02 -3.158319e-01 1.049777e-01
1.155000e+11 -3.102587e-01 1.247924e-01 6.509351e-01 -1.075619e-01 6.562270e-01 -8.847892e-02 6.509425e-01 -1.075575e-01 -3.102393e-01 1.248892e-01 6.562239e-01 -8.851144e-02 6.562170e-01 -8.843232e-02 6.562056e-01 -8.848138e-02 -3.156392e-01 1.057398e-01
1.163750e+11 -3.099994e-01 1.256869e-01 6.507507e-01 -1.083452e-01 6.561067e-01 -8.912934e-02 6.507582e-01 -1.083408e-01 -3.099797e-01 1.257843e-01 6.561036e-01 -8.916211e-02 6.560960e-01 -8.908319e-02 6.560844e-01 -8.913261e-02 -3.154454e-01 1.065014e-01
1.172500e+11 -3.097385e-01 1.265806e-01 6.505650e-01 -1.091280e-01 6.559857e-01 -8.977952e-02 6.505726e-01 -1.091236e-01 -3.097184e-01 1.266788e-01 6.559825e-01 -8.981255e-02 6.559743e-01 -8.973379e-02 6.559624e-01 -8.978355e-02 -3.152504e-01 1.072626e-01
1.181250e+11 -3.094759e-01 1.274736e-01 6.503781e-01 -1.099104e-01 6.558640e-01 -9.042948e-02 6.503859e-01 -1.099060e-01 -3.094556e-01 1.275724e-01 6.558607e-01 -9.046275e-02 6.558517e-01 -9.038409e-02 6.558397e-01 -9.043422e-02 -3.150544e-01 1.080233e-01
1.190000e+11 -3.092118e-01 1.283658e-01 6.501900e-01 -1.106922e-01 6.557416e-01 -9.107920e-02 6.501979e-01 -1.106878e-01 -3.091911e-01 1.284653e-01 6.557382e-01 -9.111273e-02 6.557283e-01 -9.103411e-02 6.557161e-01 -9.108458e-02 -3.148573e-01 1.087835e-01
1.198750e+11 -3.089460e-01 1.292572e-01 6.500007e-01 -1.114735e-01 6.556184e-01 -9.172869e-02 6.500087e-01 -1.114691e-01 -3.089250e-01 1.293574e-01 6.556150e-01 -9.176247e-02 6.556041e-01 -9.168383e-02 6.555918e-01 -9.173465e-02 -3.146591e-01 1.095432e-01
1.207500e+11 -3.086786e-01 1.301479e-01 6.498102e-01 -1.122543e-01 6.554945e-01 -9.237795e-02 6.498183e-01 -1.122498e-01 -3.086573e-01 1.302487e-01 6.554911e-01 -9.241198e-02 6.554792e-01 -9.233324e-02 6.554666e-01 -9.238441e-02 -3.144598e-01 1.103024e-01
1.216250e+11 -3.084095e-01 1.310377e-01 6.496186e-01 -1.130345e-01 6.553699e-01 -9.302698e-02 6.496267e-01 -1.130301e-01 -3.083880e-01 1.311392e-01 6.553664e-01 -9.306126e-02 6.553534e-01 -9.298234e-02 6.553407e-01 -9.303386e-02 -3.142594e-01 1.110612e-01
1.225000e+11 -3.081389e-01 1.319267e-01 6.494257e-01 -1.138142e-01 6.552446e-01 -9.367577e-02 6.494340e-01 -1.138097e-01 -3.081170e-01 1.320289e-01 6.552410e-01 -9.371030e-02 6.552269e-01 -9.363112e-02 6.552139e-01 -9.368299e-02 -3.140579e-01 1.118194e-01
1.233750e+11 -3.078667e-01 1.328149e-01 6.492316e-01 -1.145933e-01 6.551185e-01 -9.432432e-02 6.492400e-01 -1.145889e-01 -3.078445e-01 1.329178e-01 6.551149e-01 -9.435911e-02 6.550996e-01 -9.427957e-02 6.550864e-01 -9.433180e-02 -3.138552e-01 1.125772e-01
1.242500e+11 -3.075929e-01 1.337022e-01 6.490364e-01 -1.153718e-01 6.549917e-01 -9.497263e-02 6.490449e-01 -1.153674e-01 -3.075704e-01 1.338058e-01 6.549880e-01 -9.500767e-02 6.549715e-01 -9.492770e-02 6.549582e-01 -9.498027e-02 -3.136514e-01 1.133345e-01
1.251250e+11 -3.073175e-01 1.345887e-01 6.488400e-01 -1.161498e-01 6.548641e-01 -9.562070e-02 6.488486e-01 -1.161454e-01 -3.072947e-01 1.346930e-01 6.548603e-01 -9.565599e-02 6.548426e-01 -9.557549e-02 6.548291e-01 -9.562841e-02 -3.134465e-01 1.140913e-01
1.260000e+11 -3.070405e-01 1.354744e-01 6.486424e-01 -1.169272e-01 6.547358e-01 -9.626853e-02 6.486511e-01 -1.169228e-01 -3.070174e-01 1.355793e-01 6.547320e-01 -9.630407e-02 6.547130e-01 -9.622294e-02 6.546993e-01 -9.627621e-02 -3.132405e-01 1.148476e-01
1.268750e+11 -3.067620e-01 1.363591e-01 6.484437e-01 -1.177040e-01 6.546068e-01 -9.691611e-02 6.484525e-01 -1.176996e-01 -3.067385e-01 1.364648e-01 6.546028e-01 -9.695190e-02 6.545826e-01 -9.687005e-02 6.545687e-01 -9.692366e-02 -3.130333e-01 1.156034e-01
1.277500e+11 -3.064819e-01 1.372431e-01 6.482438e-01 -1.184803e-01 6.544770e-01 -9.756343e-02 6.482528e-01 -1.184758e-01 -3.064581e-01 1.373494e-01 6.544730e-01 -9.759948e-02 6.544515e-01 -9.751681e-02 6.544374e-01 -9.757077e-02 -3.128250e-01 1.163587e-01
1.286250e+11 -3.062002e-01 1.381261e-01 6.480428e-01 -1.192559e-01 6.543464e-01 -9.821050e-02 6.480519e-01 -1.192515e-01 -3.061761e-01 1.382331e-01 6.543423e-01 -9.824680e-02 6.543196e-01 -9.816322e-02 6.543053e-01 -9.821752e-02 -3.126155e-01 1.171135e-01
1.295000e+11 -3.059170e-01 1.390083e-01 6.478406e-01 -1.200309e-01 6.542151e-01 -9.885732e-02 6.478498e-01 -1.200265e-01 -3.058926e-01 1.391159e-01 6.542110e-01 -9.889386e-02 6.541870e-01 -9.880928e-02 6.541725e-01 -9.886393e-02 -3.124049e-01 1.178678e-01
1.303750e+11 -3.056323e-01 1.398896e-01 6.476374e-01 -1.208054e-01 6.540830e-01 -9.950387e-02 6.476467e-01 -1.208009e-01 -3.056076e-01 1.399979e-01 6.540788e-01 -9.954066e-02 6.540536e-01 -9.945499e-02 6.540389e-01 -9.950998e-02 -3.121931e-01 1.186215e-01
1.312500e+11 -3.053461e-01 1.407700e-01 6.474330e-01 -1.215792e-01 6.539502e-01 -1.001501e-01 6.474424e-01 -1.215747e-01 -3.053210e-01 1.408790e-01 6.539459e-01 -1.001872e-01 6.539196e-01 -1.001003e-01 6.539046e-01 -1.001557e-01 -3.119802e-01 1.193748e-01
1.321250e+11 -3.050583e-01 1.416495e-01 6.472275e-01 -1.223524e-01 6.538166e-01 -1.007962e-01 6.472370e-01 -1.223480e-01 -3.050329e-01 1.417591e-01 6.538123e-01 -1.008335e-01 6.537847e-01 -1.007453e-01 6.537696e-01 -1.008010e-01 -3.117662e-01 1.201275e-01
1.330000e+11 -3.047691e-01 1.425281e-01 6.470209e-01 -1.231250e-01 6.536823e-01 -1.014419e-01 6.470305e-01 -1.231206e-01 -3.047433e-01 1.426384e-01 6.536778e-01 -1.014794e-01 6.536492e-01 -1.013900e-01 6.536338e-01 -1.014460e-01 -3.115509e-01 1.208796e-01
1.338750e+11 -3.044783e-01 1.434058e-01 6.468132e-01 -1.238970e-01 6.535472e-01 -1.020874e-01 6.468229e-01 -1.238926e-01 -3.044522e-01 1.435168e-01 6.535427e-01 -1.021251e-01 6.535130e-01 -1.020343e-01 6.534974e-01 -1.020906e-01 -3.113346e-01 1.216313e-01
1.347500e+11 -3.041861e-01 1.442826e-01 6.466044e-01 -1.246684e-01 6.534113e-01 -1.027325e-01 6.466143e-01 -1.246640e-01 -3.041596e-01 1.443943e-01 6.534067e-01 -1.027706e-01 6.533760e-01 -1.026782e-01 6.533602e-01 -1.027349e-01 -3.111170e-01 1.223824e-01
1.356250e+11 -3.038924e-01 1.451585e-01 6.463945e-01 -1.254392e-01 6.532747e-01 -1.033774e-01 6.464046e-01 -1.254348e-01 -3.038656e-01 1.452709e-01 6.532700e-01 -1.034157e-01 6.532384e-01 -1.033218e-01 6.532224e-01 -1.033788e-01 -3.108983e-01 1.231329e-01
1.365000e+11 -3.035972e-01 1.460335e-01 6.461836e-01 -1.262094e-01 6.531373e-01 -1.040220e-01 6.461937e-01 -1.262050e-01 -3.035701e-01 1.461466e-01 6.531325e-01 -1.040606e-01 6.531000e-01 -1.039650e-01 6.530838e-01 -1.040224e-01 -3.106785e-01 1.238829e-01
1.373750e+11 -3.033006e-01 1.469077e-01 6.459716e-01 -1.269790e-01 6.529991e-01 -1.046663e-01 6.459819e-01 -1.269745e-01 -3.032731e-01 1.470213e-01 6.529943e-01 -1.047051e-01 6.529610e-01 -1.046079e-01 6.529445e-01 -1.046656e-01 -3.104575e-01 1.246323e-01
1.382500e+11 -3.030025e-01 1.477809e-01 6.457586e-01 -1.277479e-01 6.528602e-01 -1.053103e-01 6.457689e-01 -1.277435e-01 -3.029747e-01 1.478952e-01 6.528553e-01 -1.053493e-01 6.528213e-01 -1.052504e-01 6.528046e-01 -1.053084e-01 -3.102353e-01 1.253811e-01
1.391250e+11 -3.027030e-01 1.486532e-01 6.455445e-01 -1.285163e-01 6.527205e-01 -1.059540e-01 6.455550e-01 -1.285119e-01 -3.026748e-01 1.487682e-01 6.527155e-01 -1.059933e-01 6.526809e-01 -1.058926e-01 6.526640e-01 -1.059509e-01 -3.100120e-01 1.261294e-01
1.400000e+11 -3.024020e-01 1.495247e-01 6.453293e-01 -1.292841e-01 6.525800e-01 -1.065974e-01 6.453399e-01 -1.292797e-01 -3.023735e-01 1.496403e-01 6.525750e-01 -1.066369e-01 6.525398e-01 -1.065344e-01 6.525227e-01 -1.065931e-01 -3.097875e-01 1.268771e-01
1.408750e+11 -3.020997e-01 1.503952e-01 6.451131e-01 -1.300513e-01 6.524388e-01 -1.072405e-01 6.451239e-01 -1.300469e-01 -3.020708e-01 1.505115e-01 6.524337e-01 -1.072802e-01 6.523980e-01 -1.071759e-01 6.523807e-01 -1.072349e-01 -3.095619e-01 1.276241e-01
1.417500e+11 -3.017959e-01 1.512649e-01 6.448959e-01 -1.308179e-01 6.522969e-01 -1.078832e-01 6.449068e-01 -1.308135e-01 -3.017666e-01 1.513819e-01 6.522917e-01 -1.079232e-01 6.522556e-01 -1.078171e-01 6.522380e-01 -1.078764e-01 -3.093351e-01 1.283706e-01
1.426250e+11 -3.014906e-01 1.521337e-01 6.446776e-01 -1.315839e-01 6.521541e-01 -1.085256e-01 6.446886e-01 -1.315795e-01 -3.014610e-01 1.522513e-01 6.521489e-01 -1.085659e-01 6.521125e-01 -1.084579e-01 6.520947e-01 -1.085176e-01 -3.091071e-01 1.291165e-01
1.435000e+11 -3.011840e-01 1.530016e-01 6.444583e-01 -1.323493e-01 6.520107e-01 -1.091677e-01 6.444694e-01 -1.323449e-01 -3.011541e-01 1.531199e-01 6.520053e-01 -1.092082e-01 6.519687e-01 -1.090984e-01 6.519507e-01 -1.091584e-01 -3.088781e-01 1.298618e-01
1.443750e+11 -3.008760e-01 1.538686e-01 6.442380e-01 -1.331141e-01 6.518664e-01 -1.098095e-01 6.442492e-01 -1.331098e-01 -3.008457e-01 1.539875e-01 6.518610e-01 -1.098503e-01 6.518243e-01 -1.097386e-01 6.518060e-01 -1.097989e-01 -3.086478e-01 1.306065e-01
1.452500e+11 -3.005665e-01 1.547348e-01 6.440166e-01 -1.338784e-01 6.517215e-01 -1.104510e-01 6.440280e-01 -1.338741e-01 -3.005359e-01 1.548543e-01 6.517159e-01 -1.104920e-01 6.516792e-01 -1.103784e-01 6.516607e-01 -1.104391e-01 -3.084165e-01 1.313505e-01
1.461250e+11 -3.002557e-01 1.556001e-01 6.437943e-01 -1.346421e-01 6.515757e-01 -1.110921e-01 6.438058e-01 -1.346378e-01 -3.002247e-01 1.557203e-01 6.515701e-01 -1.111333e-01 6.515334e-01 -1.110180e-01 6.515147e-01 -1.110790e-01 -3.081840e-01 1.320939e-01
1.470000e+11 -2.999434e-01 1.564645e-01 6.435709e-01 -1.354053e-01 6.514293e-01 -1.117328e-01 6.435825e-01 -1.354009e-01 -2.999120e-01 1.565854e-01 6.514236e-01 -1.117743e-01 6.513869e-01 -1.116572e-01 6.513680e-01 -1.117186e-01 -3.079504e-01 1.328367e-01
1.478750e+11 -2.996298e-01 1.573281e-01 6.433464e-01 -1.361678e-01 6.512820e-01 -1.123733e-01 6.433582e-01 -1.361635e-01 -2.995980e-01 1.574496e-01 6.512763e-01 -1.124150e-01 6.512398e-01 -1.122962e-01 6.512207e-01 -1.123578e-01 -3.077156e-01 1.335789e-01
1.487500e+11 -2.993148e-01 1.581908e-01 6.431210e-01 -1.369299e-01 6.511341e-01 -1.130133e-01 6.431328e-01 -1.369256e-01 -2.992826e-01 1.583129e-01 6.511282e-01 -1.130553e-01 6.510921e-01 -1.129348e-01 6.510727e-01 -1.129968e-01 -3.074797e-01 1.343204e-01
1.496250e+11 -2.989984e-01 1.590527e-01 6.428945e-01 -1.376913e-01 6.509854e-01 -1.136531e-01 6.429065e-01 -1.376870e-01 -2.989658e-01 1.591755e-01 6.509794e-01 -1.136953e-01 6.509436e-01 -1.135731e-01 6.509240e-01 -1.136355e-01 -3.072427e-01 1.350613e-01
1.505000e+11 -2.986805e-01 1.599137e-01 6.426670e-01 -1.384522e-01 6.508360e-01 -1.142925e-01 6.426791e-01 -1.384480e-01 -2.986476e-01 1.600371e-01 6.508299e-01 -1.143349e-01 6.507945e-01 -1.142112e-01 6.507746e-01 -1.142738e-01 -3.070046e-01 1.358015e-01
1.513750e+11 -2.983613e-01 1.607738e-01 6.424384e-01 -1.392126e-01 6.506858e-01 -1.149315e-01 6.424507e-01 -1.392084e-01 -2.983280e-01 1.608979e-01 6.506797e-01 -1.149742e-01 6.506447e-01 -1.148489e-01 6.506246e-01 -1.149119e-01 -3.067654e-01 1.365411e-01
1.522500e+11 -2.980407e-01 1.616332e-01 6.422088e-01 -1.399724e-01 6.505349e-01 -1.155702e-01 6.422212e-01 -1.399682e-01 -2.980070e-01 1.617579e-01 6.505287e-01 -1.156131e-01 6.504943e-01 -1.154864e-01 6.504739e-01 -1.155497e-01 -3.065251e-01 1.372800e-01
1.531250e+11 -2.977187e-01 1.624917e-01 6.419782e-01 -1.407317e-01 6.503833e-01 -1.162085e-01 6.419908e-01 -1.407275e-01 -2.976846e-01 1.626170e-01 6.503770e-01 -1.162517e-01 6.503431e-01 -1.161236e-01 6.503225e-01 -1.161872e-01 -3.062836e-01 1.380183e-01
1.540000e+11 -2.973953e-01 1.633493e-01 6.417466e-01 -1.414905e-01 6.502310e-01 -1.168465e-01 6.417592e-01 -1.414863e-01 -2.973608e-01 1.634753e-01 6.502246e-01 -1.168899e-01 6.501913e-01 -1.167605e-01 6.501705e-01 -1.168244e-01 -3.060411e-01 1.387559e-01
1.548750e+11 -2.970704e-01 1.642062e-01 6.415139e-01 -1.422487e-01 6.500780e-01 -1.174841e-01 6.415267e-01 -1.422445e-01 -2.970356e-01 1.643328e-01 6.500715e-01 -1.175278e-01 6.500388e-01 -1.173971e-01 6.500177e-01 -1.174613e-01 -3.057975e-01 1.394929e-01
1.557500e+11 -2.967442e-01 1.650622e-01 6.412802e-01 -1.430063e-01 6.499242e-01 -1.181214e-01 6.412931e-01 -1.430022e-01 -2.967090e-01 1.651894e-01 6.499177e-01 -1.181653e-01 6.498856e-01 -1.180334e-01 6.498643e-01 -1.180980e-01 -3.055529e-01 1.402292e-01
1.566250e+11 -2.964166e-01 1.659173e-01 6.410454e-01 -1.437635e-01 6.497698e-01 -1.187583e-01 6.410584e-01 -1.437593e-01 -2.963810e-01 1.660452e-01 6.497631e-01 -1.188025e-01 6.497317e-01 -1.186695e-01 6.497102e-01 -1.187343e-01 -3.053071e-01 1.409649e-01
1.575000e+11 -2.960875e-01 1.667717e-01 6.408095e-01 -1.445201e-01 6.496146e-01 -1.193949e-01 6.408227e-01 -1.445160e-01 -2.960516e-01 1.669002e-01 6.496078e-01 -1.194393e-01 6.495772e-01 -1.193052e-01 6.495553e-01 -1.193704e-01 -3.050603e-01 1.416998e-01
1.583750e+11 -2.957571e-01 1.676252e-01 6.405727e-01 -1.452761e-01 6.494587e-01 -1.200311e-01 6.405860e-01 -1.452720e-01 -2.957207e-01 1.677543e-01 6.494519e-01 -1.200757e-01 6.494219e-01 -1.199408e-01 6.493998e-01 -1.200063e-01 -3.048124e-01 1.424341e-01
1.592500e+11 -2.954252e-01 1.684778e-01 6.403347e-01 -1.460317e-01 6.493022e-01 -1.206669e-01 6.403482e-01 -1.460276e-01 -2.953884e-01 1.686076e-01 6.492952e-01 -1.207118e-01 6.492659e-01 -1.205760e-01 6.492436e-01 -1.206418e-01 -3.045634e-01 1.431678e-01
1.601250e+11 -2.950919e-01 1.693297e-01 6.400957e-01 -1.467867e-01 6.491449e-01 -1.213024e-01 6.401093e-01 -1.467826e-01 -2.950547e-01 1.694601e-01 6.491379e-01 -1.213475e-01 6.491092e-01 -1.212110e-01 6.490866e-01 -1.212771e-01 -3.043134e-01 1.439008e-01
1.610000e+11 -2.947571e-01 1.701807e-01 6.398556e-01 -1.475411e-01 6.489869e-01 -1.219376e-01 6.398693e-01 -1.475371e-01 -2.947196e-01 1.703117e-01 6.489798e-01 -1.219829e-01 6.489518e-01 -1.218457e-01 6.489290e-01 -1.219121e-01 -3.040623e-01 1.446331e-01
1.618750e+11 -2.944210e-01 1.710308e-01 6.396144e-01 -1.482950e-01 6.488283e-01 -1.225724e-01 6.396283e-01 -1.482910e-01 -2.943830e-01 1.711625e-01 6.488211e-01 -1.226180e-01 6.487937e-01 -1.224801e-01 6.487706e-01 -1.225468e-01 -3.038102e-01 1.453648e-01
1.627500e+11 -2.940833e-01 1.718802e-01 6.393722e-01 -1.490484e-01 6.486689e-01 -1.232068e-01 6.393862e-01 -1.490444e-01 -2.940450e-01 1.720124e-01 6.486616e-01 -1.232526e-01 6.486348e-01 -1.231142e-01 6.486115e-01 -1.231813e-01 -3.035571e-01 1.460958e-01
1.636250e+11 -2.937443e-01 1.727286e-01 6.391289e-01 -1.498012e-01 6.485089e-01 -1.238409e-01 6.391430e-01 -1.497973e-01 -2.937056e-01 1.728615e-01 6.485015e-01 -1.238870e-01 6.484753e-01 -1.237481e-01 6.484517e-01 -1.238154e-01 -3.033029e-01 1.468261e-01
1.645000e+11 -2.934038e-01 1.735763e-01 6.388845e-01 -1.505535e-01 6.483482e-01 -1.244746e-01 6.388987e-01 -1.505496e-01 -2.933647e-01 1.737098e-01 6.483407e-01 -1.245210e-01 6.483150e-01 -1.243816e-01 6.482911e-01 -1.244493e-01 -3.030477e-01 1.475558e-01
1.653750e+11 -2.930619e-01 1.744231e-01 6.386390e-01 -1.513052e-01 6.481868e-01 -1.251081e-01 6.386534e-01 -1.513013e-01 -2.930223e-01 1.745572e-01 6.481792e-01 -1.251546e-01 6.481539e-01 -1.250149e-01 6.481298e-01 -1.250829e-01 -3.027914e-01 1.482848e-01
1.662500e+11 -2.927185e-01 1.752690e-01 6.383924e-01 -1.520564e-01 6.480247e-01 -1.257411e-01 6.384069e-01 -1.520525e-01 -2.926785e-01 1.754037e-01 6.480170e-01 -1.257879e-01 6.479922e-01 -1.256479e-01 6.479678e-01 -1.257163e-01 -3.025341e-01 1.490132e-01
1.671250e+11 -2.923737e-01 1.761141e-01 6.381447e-01 -1.528070e-01 6.478620e-01 -1.263738e-01 6.381594e-01 -1.528031e-01 -2.923333e-01 1.762494e-01 6.478542e-01 -1.264209e-01 6.478296e-01 -1.262807e-01 6.478050e-01 -1.263493e-01 -3.022758e-01 1.497409e-01
1.680000e+11 -2.920274e-01 1.769582e-01 6.378959e-01 -1.535570e-01 6.476986e-01 -1.270062e-01 6.379107e-01 -1.535532e-01 -2.919866e-01 1.770942e-01 6.476906e-01 -1.270535e-01 6.476664e-01 -1.269131e-01 6.476415e-01 -1.269820e-01 -3.020165e-01 1.504680e-01
1.688750e+11 -2.916796e-01 1.778016e-01 6.376460e-01 -1.543064e-01 6.475344e-01 -1.276383e-01 6.376610e-01 -1.543027e-01 -2.916384e-01 1.779382e-01 6.475264e-01 -1.276858e-01 6.475024e-01 -1.275452e-01 6.474772e-01 -1.276144e-01 -3.017562e-01 1.511944e-01
1.697500e+11 -2.913304e-01 1.786440e-01 6.373950e-01 -1.550553e-01 6.473697e-01 -1.282700e-01 6.374102e-01 -1.550516e-01 -2.912888e-01 1.787812e-01 6.473616e-01 -1.283177e-01 6.473376e-01 -1.281770e-01 6.473122e-01 -1.282466e-01 -3.014949e-01 1.519202e-01
1.706250e+11 -2.909798e-01 1.794856e-01 6.371430e-01 -1.558036e-01 6.472042e-01 -1.289013e-01 6.371582e-01 -1.557999e-01 -2.909377e-01 1.796234e-01 6.471960e-01 -1.289493e-01 6.471721e-01 -1.288086e-01 6.471464e-01 -1.288784e-01 -3.012325e-01 1.526453e-01
1.715000e+11 -2.906277e-01 1.803262e-01 6.368898e-01 -1.565513e-01 6.470381e-01 -1.295324e-01 6.369052e-01 -1.565476e-01 -2.905852e-01 1.804646e-01 6.470298e-01 -1.295806e-01 6.470059e-01 -1.294398e-01 6.469799e-01 -1.295099e-01 -3.009692e-01 1.533698e-01
1.723750e+11 -2.902741e-01 1.811660e-01 6.366355e-01 -1.572984e-01 6.468713e-01 -1.301631e-01 6.366510e-01 -1.572947e-01 -2.902312e-01 1.813050e-01 6.468629e-01 -1.302116e-01 6.468389e-01 -1.300707e-01 6.468126e-01 -1.301411e-01 -3.007048e-01 1.540937e-01
1.732500e+11 -2.899190e-01 1.820049e-01 6.363801e-01 -1.580449e-01 6.467038e-01 -1.307935e-01 6.363958e-01 -1.580413e-01 -2.898757e-01 1.821445e-01 6.466953e-01 -1.308422e-01 6.466711e-01 -1.307013e-01 6.466446e-01 -1.307720e-01 -3.004394e-01 1.548169e-01
1.741250e+11 -2.895626e-01 1.828428e-01 6.361236e-01 -1.587907e-01 6.465357e-01 -1.314236e-01 6.361394e-01 -1.587872e-01 -2.895188e-01 1.829830e-01 6.465271e-01 -1.314725e-01 6.465026e-01 -1.313315e-01 6.464758e-01 -1.314025e-01 -3.001730e-01 1.555395e-01
1.750000e+11 -2.892046e-01 1.836798e-01 6.358660e-01 -1.595360e-01 6.463669e-01 -1.320533e-01 6.358820e-01 -1.595325e-01 -2.891605e-01 1.838206e-01 6.463581e-01 -1.321025e-01 6.463333e-01 -1.319614e-01 6.463063e-01 -1.320327e-01 -2.999057e-01 1.562615e-01
1.758750e+11 -2.888452e-01 1.845159e-01 6.356073e-01 -1.602806e-01 6.461974e-01 -1.326828e-01 6.356234e-01 -1.602771e-01 -2.888006e-01 1.846573e-01 6.461886e-01 -1.327322e-01 6.461632e-01 -1.325910e-01 6.461359e-01 -1.326626e-01 -2.996373e-01 1.569829e-01
1.767500e+11 -2.884844e-01 1.853510e-01 6.353475e-01 -1.610246e-01 6.460272e-01 -1.333119e-01 6.353638e-01 -1.610212e-01 -2.884394e-01 1.854931e-01 6.460183e-01 -1.333615e-01 6.459925e-01 -1.332203e-01 6.459649e-01 -1.332922e-01 -2.993679e-01 1.577036e-01
1.776250e+11 -2.881221e-01 1.861853e-01 6.350867e-01 -1.617680e-01 6.458564e-01 -1.339407e-01 6.351031e-01 -1.617646e-01 -2.880766e-01 1.863278e-01 6.458473e-01 -1.339906e-01 6.458209e-01 -1.338492e-01 6.457931e-01 -1.339214e-01 -2.990975e-01 1.584237e-01
1.785000e+11 -2.877583e-01 1.870185e-01 6.348247e-01 -1.625107e-01 6.456848e-01 -1.345692e-01 6.348412e-01 -1.625073e-01 -2.877125e-01 1.871617e-01 6.456757e-01 -1.346193e-01 6.456486e-01 -1.344777e-01 6.456205e-01 -1.345502e-01 -2.988261e-01 1.591432e-01
1.793750e+11 -2.873932e-01 1.878508e-01 6.345616e-01 -1.632528e-01 6.455127e-01 -1.351974e-01 6.345783e-01 -1.632494e-01 -2.873469e-01 1.879946e-01 6.455034e-01 -1.352477e-01 6.454756e-01 -1.351059e-01 6.454472e-01 -1.351787e-01 -2.985537e-01 1.598621e-01
1.802500e+11 -2.870266e-01 1.886821e-01 6.342975e-01 -1.639942e-01 6.453398e-01 -1.358253e-01 6.343143e-01 -1.639909e-01 -2.869798e-01 1.888265e-01 6.453305e-01 -1.358758e-01 6.453018e-01 -1.357338e-01 6.452731e-01 -1.358069e-01 -2.982803e-01 1.605803e-01
1.811250e+11 -2.866585e-01 1.895125e-01 6.340323e-01 -1.647349e-01 6.451662e-01 -1.364529e-01 6.340493e-01 -1.647317e-01 -2.866113e-01 1.896574e-01 6.451568e-01 -1.365037e-01 6.451273e-01 -1.363613e-01 6.450983e-01 -1.364346e-01 -2.980059e-01 1.612980e-01
1.820000e+11 -2.862891e-01 1.903418e-01 6.337660e-01 -1.654750e-01 6.449920e-01 -1.370802e-01 6.337831e-01 -1.654718e-01 -2.862415e-01 1.904874e-01 6.449825e-01 -1.371312e-01 6.449520e-01 -1.369884e-01 6.449228e-01 -1.370620e-01 -2.977305e-01 1.620151e-01
1.828750e+11 -2.859182e-01 1.911702e-01 6.334987e-01 -1.662144e-01 6.448171e-01 -1.377071e-01 6.335159e-01 -1.662112e-01 -2.858701e-01 1.913163e-01 6.448075e-01 -1.377584e-01 6.447760e-01 -1.376151e-01 6.447465e-01 -1.376891e-01 -2.974541e-01 1.627315e-01
1.837500e+11 -2.855460e-01 1.919976e-01 6.332303e-01 -1.669531e-01 6.446415e-01 -1.383338e-01 6.332477e-01 -1.669500e-01 -2.854974e-01 1.921443e-01 6.446317e-01 -1.383853e-01 6.445993e-01 -1.382415e-01 6.445695e-01 -1.383157e-01 -2.971767e-01 1.634474e-01
1.846250e+11 -2.851723e-01 1.928240e-01 6.329608e-01 -1.676912e-01 6.444652e-01 -1.389602e-01 6.329784e-01 -1.676881e-01 -2.851233e-01 1.929713e-01 6.444554e-01 -1.390119e-01 6.444218e-01 -1.388675e-01 6.443917e-01 -1.389420e-01 -2.968982e-01 1.641626e-01
1.855000e+11 -2.847972e-01 1.936494e-01 6.326903e-01 -1.684286e-01 6.442882e-01 -1.395862e-01 6.327080e-01 -1.684255e-01 -2.847478e-01 1.937973e-01 6.442783e-01 -1.396382e-01 6.442436e-01 -1.394931e-01 6.442132e-01 -1.395679e-01 -2.966188e-01 1.648772e-01
1.863750e+11 -2.844207e-01 1.944738e-01 6.324188e-01 -1.691653e-01 6.441106e-01 -1.402120e-01 6.324366e-01 -1.691623e-01 -2.843709e-01 1.946223e-01 6.441005e-01 -1.402642e-01 6.440647e-01 -1.401183e-01 6.440340e-01 -1.401934e-01 -2.963383e-01 1.655913e-01
1.872500e+11 -2.840429e-01 1.952972e-01 6.321462e-01 -1.699013e-01 6.439322e-01 -1.408375e-01 6.321642e-01 -1.698983e-01 -2.839926e-01 1.954462e-01 6.439220e-01 -1.408899e-01 6.438851e-01 -1.407432e-01 6.438541e-01 -1.408185e-01 -2.960568e-01 1.663047e-01
1.881250e+11 -2.836637e-01 1.961196e-01 6.318726e-01 -1.706366e-01 6.437531e-01 -1.414627e-01 6.318908e-01 -1.706337e-01 -2.836129e-01 1.962692e-01 6.437429e-01 -1.415153e-01 6.437047e-01 -1.413677e-01 6.436735e-01 -1.414433e-01 -2.957743e-01 1.670176e-01
1.890000e+11 -2.832831e-01 1.969410e-01 6.315980e-01 -1.713712e-01 6.435734e-01 -1.420875e-01 6.316163e-01 -1.713684e-01 -2.832319e-01 1.970911e-01 6.435630e-01 -1.421404e-01 6.435237e-01 -1.419917e-01 6.434922e-01 -1.420677e-01 -2.954908e-01 1.677298e-01
1.898750e+11 -2.829012e-01 1.977613e-01 6.313223e-01 -1.721051e-01 6.433929e-01 -1.427121e-01 6.313408e-01 -1.721023e-01 -2.828495e-01 1.979121e-01 6.433824e-01 -1.427652e-01 6.433420e-01 -1.426154e-01 6.433102e-01 -1.426916e-01 -2.952062e-01 1.684415e-01
1.907500e+11 -2.825179e-01 1.985807e-01 6.310457e-01 -1.728384e-01 6.432118e-01 -1.433364e-01 6.310643e-01 -1.728356e-01 -2.824658e-01 1.987320e-01 6.432012e-01 -1.433897e-01 6.431596e-01 -1.432387e-01 6.431274e-01 -1.433152e-01 -2.949206e-01 1.691525e-01
1.916250e+11 -2.821333e-01 1.993990e-01 6.307681e-01 -1.735709e-01 6.430299e-01 -1.439604e-01 6.307868e-01 -1.735682e-01 -2.820807e-01 1.995509e-01 6.430192e-01 -1.440139e-01 6.429764e-01 -1.438617e-01 6.429440e-01 -1.439384e-01 -2.946340e-01 1.698629e-01
1.925000e+11 -2.817474e-01 2.002163e-01 6.304895e-01 -1.743028e-01 6.428474e-01 -1.445841e-01 6.305084e-01 -1.743001e-01 -2.816943e-01 2.003687e-01 6.428365e-01 -1.446378e-01 6.427926e-01 -1.444842e-01 6.427599e-01 -1.445612e-01 -2.943463e-01 1.705728e-01
1.933750e+11 -2.813601e-01 2.010326e-01 6.302098e-01 -1.750340e-01 6.426641e-01 -1.452074e-01 6.302289e-01 -1.750314e-01 -2.813066e-01 2.011856e-01 6.426531e-01 -1.452614e-01 6.426082e-01 -1.451063e-01 6.425752e-01 -1.451836e-01 -2.940576e-01 1.712820e-01
1.942500e+11 -2.809715e-01 2.018479e-01 6.299293e-01 -1.757645e-01 6.424801e-01 -1.458305e-01 6.299485e-01 -1.757619e-01 -2.809176e-01 2.020014e-01 6.424690e-01 -1.458847e-01 6.424230e-01 -1.457281e-01 6.423897e-01 -1.458056e-01 -2.937679e-01 1.719906e-01
1.951250e+11 -2.805816e-01 2.026621e-01 6.296477e-01 -1.764943e-01 6.422954e-01 -1.464533e-01 6.296671e-01 -1.764918e-01 -2.805272e-01 2.028163e-01 6.422842e-01 -1.465077e-01 6.422372e-01 -1.463495e-01 6.422036e-01 -1.464273e-01 -2.934771e-01 1.726986e-01
1.960000e+11 -2.801905e-01 2.034754e-01 6.293652e-01 -1.772234e-01 6.421100e-01 -1.470757e-01 6.293847e-01 -1.772209e-01 -2.801356e-01 2.036301e-01 6.420987e-01 -1.471304e-01 6.420507e-01 -1.469705e-01 6.420169e-01 -1.470485e-01 -2.931853e-01 1.734060e-01
1.968750e+11 -2.797980e-01 2.042876e-01 6.290817e-01 -1.779518e-01 6.419239e-01 -1.476979e-01 6.291014e-01 -1.779494e-01 -2.797426e-01 2.044429e-01 6.419125e-01 -1.477528e-01 6.418636e-01 -1.475911e-01 6.418294e-01 -1.476694e-01 -2.928924e-01 1.741128e-01
1.977500e+11 -2.794042e-01 2.050989e-01 6.287973e-01 -1.786796e-01 6.417370e-01 -1.483197e-01 6.288171e-01 -1.786772e-01 -2.793484e-01 2.052547e-01 6.417255e-01 -1.483748e-01 6.416758e-01 -1.482113e-01 6.416413e-01 -1.482899e-01 -2.925985e-01 1.748190e-01
1.986250e+11 -2.790091e-01 2.059091e-01 6.285119e-01 -1.794067e-01 6.415495e-01 -1.489412e-01 6.285319e-01 -1.794044e-01 -2.789528e-01 2.060655e-01 6.415379e-01 -1.489966e-01 6.414874e-01 -1.488312e-01 6.414526e-01 -1.489101e-01 -2.923035e-01 1.755245e-01
1.995000e+11 -2.786128e-01 2.067184e-01 6.282256e-01 -1.801331e-01 6.413612e-01 -1.495624e-01 6.282457e-01 -1.801309e-01 -2.785560e-01 2.068753e-01 6.413495e-01 -1.496180e-01 6.412983e-01 -1.494507e-01 6.412632e-01 -1.495298e-01 -2.920075e-01 1.762294e-01
2.003750e+11 -2.782152e-01 2.075266e-01 6.279383e-01 -1.808588e-01 6.411722e-01 -1.501833e-01 6.279586e-01 -1.808567e-01 -2.781580e-01 2.076841e-01 6.411603e-01 -1.502391e-01 6.411086e-01 -1.500698e-01 6.410732e-01 -1.501492e-01 -2.917104e-01 1.769337e-01
2.012500e+11 -2.778163e-01 2.083338e-01 6.276501e-01 -1.815839e-01 6.409825e-01 -1.508039e-01 6.276706e-01 -1.815818e-01 -2.777586e-01 2.084919e-01 6.409705e-01 -1.508599e-01 6.409182e-01 -1.506886e-01 6.408825e-01 -1.507683e-01 -2.914123e-01 1.776374e-01
2.021250e+11 -2.774162e-01 2.091401e-01 6.273610e-01 -1.823084e-01 6.407920e-01 -1.514241e-01 6.273816e-01 -1.823063e-01 -2.773580e-01 2.092987e-01 6.407800e-01 -1.514804e-01 6.407272e-01 -1.513070e-01 6.406912e-01 -1.513870e-01 -2.911131e-01 1.783404e-01
2.030000e+11 -2.770148e-01 2.099454e-01 6.270709e-01 -1.830321e-01 6.406009e-01 -1.520440e-01 6.270917e-01 -1.830302e-01 -2.769561e-01 2.101045e-01 6.405887e-01 -1.521005e-01 6.405356e-01 -1.519251e-01 6.404993e-01 -1.520053e-01 -2.908129e-01 1.790428e-01
2.038750e+11 -2.766122e-01 2.107497e-01 6.267800e-01 -1.837553e-01 6.404090e-01 -1.526636e-01 6.268009e-01 -1.837534e-01 -2.765530e-01 2.109093e-01 6.403967e-01 -1.527203e-01 6.403433e-01 -1.525428e-01 6.403067e-01 -1.526232e-01 -2.905116e-01 1.797445e-01
2.047500e+11 -2.762083e-01 2.115530e-01 6.264880e-01 -1.844778e-01 6.402164e-01 -1.532828e-01 6.265091e-01 -1.844759e-01 -2.761486e-01 2.117132e-01 6.402040e-01 -1.533398e-01 6.401504e-01 -1.531601e-01 6.401135e-01 -1.532409e-01 -2.902093e-01 1.804456e-01
2.056250e+11 -2.758031e-01 2.123553e-01 6.261952e-01 -1.851997e-01 6.400231e-01 -1.539018e-01 6.262164e-01 -1.851979e-01 -2.757430e-01 2.125161e-01 6.400106e-01 -1.539589e-01 6.399569e-01 -1.537772e-01 6.399197e-01 -1.538582e-01 -2.899059e-01 1.811460e-01
2.065000e+11 -2.753967e-01 2.131567e-01 6.259014e-01 -1.859209e-01 6.398291e-01 -1.545203e-01 6.259228e-01 -1.859192e-01 -2.753361e-01 2.133180e-01 6.398164e-01 -1.545777e-01 6.397627e-01 -1.543939e-01 6.397252e-01 -1.544751e-01 -2.896014e-01 1.818457e-01
2.073750e+11 -2.749891e-01 2.139571e-01 6.256068e-01 -1.866415e-01 6.396343e-01 -1.551385e-01 6.256283e-01 -1.866398e-01 -2.749280e-01 2.141189e-01 6.396215e-01 -1.551961e-01 6.395679e-01 -1.550102e-01 6.395301e-01 -1.550917e-01 -2.892959e-01 1.825448e-01
2.082500e+11 -2.745802e-01 2.147566e-01 6.253111e-01 -1.873615e-01 6.394388e-01 -1.557564e-01 6.253328e-01 -1.873599e-01 -2.745186e-01 2.149189e-01 6.394260e-01 -1.558142e-01 6.393725e-01 -1.556263e-01 6.393344e-01 -1.557080e-01 -2.889894e-01 1.832432e-01
2.091250e+11 -2.741700e-01 2.155551e-01 6.250146e-01 -1.880808e-01 6.392427e-01 -1.563739e-01 6.250365e-01 -1.880793e-01 -2.741080e-01 2.157180e-01 6.392297e-01 -1.564320e-01 6.391765e-01 -1.562420e-01 6.391380e-01 -1.563240e-01 -2.886818e-01 1.839410e-01
2.100000e+11 -2.737586e-01 2.163526e-01 6.247171e-01 -1.887996e-01 6.390458e-01 -1.569911e-01 6.247392e-01 -1.887981e-01 -2.736961e-01 2.165161e-01 6.390326e-01 -1.570494e-01 6.389798e-01 -1.568574e-01 6.389410e-01 -1.569396e-01 -2.883731e-01 1.846380e-01
2.108750e+11 -2.733460e-01 2.171492e-01 6.244187e-01 -1.895177e-01 6.388482e-01 -1.576079e-01 6.244409e-01 -1.895163e-01 -2.732829e-01 2.173132e-01 6.388349e-01 -1.576664e-01 6.387825e-01 -1.574725e-01 6.387434e-01 -1.575550e-01 -2.880634e-01 1.853344e-01
2.117500e+11 -2.729321e-01 2.179449e-01 6.241194e-01 -1.902352e-01 6.386499e-01 -1.582244e-01 6.241418e-01 -1.902339e-01 -2.728685e-01 2.181094e-01 6.386365e-01 -1.582831e-01 6.385845e-01 -1.580872e-01 6.385451e-01 -1.581700e-01 -2.877527e-01 1.860301e-01
2.126250e+11 -2.725169e-01 2.187396e-01 6.238191e-01 -1.909521e-01 6.384508e-01 -1.588405e-01 6.238416e-01 -1.909509e-01 -2.724529e-01 2.189046e-01 6.384374e-01 -1.588994e-01 6.383859e-01 -1.587017e-01 6.383462e-01 -1.587847e-01 -2.874409e-01 1.867250e-01
2.135000e+11 -2.721005e-01 2.195334e-01 6.235179e-01 -1.916685e-01 6.382511e-01 -1.594562e-01 6.235406e-01 -1.916673e-01 -2.720360e-01 2.196989e-01 6.382375e-01 -1.595153e-01 6.381867e-01 -1.593159e-01 6.381467e-01 -1.593991e-01 -2.871281e-01 1.874193e-01
2.143750e+11 -2.716828e-01 2.203262e-01 6.232158e-01 -1.923842e-01 6.380507e-01 -1.600716e-01 6.232386e-01 -1.923831e-01 -2.716178e-01 2.204922e-01 6.380370e-01 -1.601309e-01 6.379868e-01 -1.599297e-01 6.379465e-01 -1.600132e-01 -2.868143e-01 1.881129e-01
2.152500e+11 -2.712639e-01 2.211181e-01 6.229127e-01 -1.930993e-01 6.378496e-01 -1.606865e-01 6.229357e-01 -1.930982e-01 -2.711984e-01 2.212846e-01 6.378357e-01 -1.607461e-01 6.377863e-01 -1.605433e-01 6.377457e-01 -1.606270e-01 -2.864994e-01 1.888057e-01
2.161250e+11 -2.708437e-01 2.219090e-01 6.226087e-01 -1.938138e-01 6.376478e-01 -1.613012e-01 6.226319e-01 -1.938128e-01 -2.707777e-01 2.220761e-01 6.376338e-01 -1.613609e-01 6.375852e-01 -1.611565e-01 6.375442e-01 -1.612405e-01 -2.861836e-01 1.894979e-01
2.170000e+11 -2.704222e-01 2.226990e-01 6.223037e-01 -1.945277e-01 6.374453e-01 -1.619154e-01 6.223270e-01 -1.945268e-01 -2.703557e-01 2.228666e-01 6.374312e-01 -1.619754e-01 6.373834e-01 -1.617695e-01 6.373421e-01 -1.618537e-01 -2.858667e-01 1.901893e-01
2.178750e+11 -2.699995e-01 2.234881e-01 6.219978e-01 -1.952410e-01 6.372421e-01 -1.625292e-01 6.220213e-01 -1.952402e-01 -2.699325e-01 2.236562e-01 6.372279e-01 -1.625895e-01 6.371809e-01 -1.623822e-01 6.371393e-01 -1.624666e-01 -2.855488e-01 1.908800e-01
2.187500e+11 -2.695754e-01 2.242762e-01 6.216909e-01 -1.959537e-01 6.370383e-01 -1.631427e-01 6.217145e-01 -1.959530e-01 -2.695080e-01 2.244448e-01 6.370239e-01 -1.632032e-01 6.369778e-01 -1.629945e-01 6.369358e-01 -1.630792e-01 -2.852298e-01 1.915699e-01
2.196250e+11 -2.691502e-01 2.250633e-01 6.213831e-01 -1.966658e-01 6.368337e-01 -1.637558e-01 6.214069e-01 -1.966652e-01 -2.690822e-01 2.252325e-01 6.368192e-01 -1.638165e-01 6.367740e-01 -1.636066e-01 6.367317e-01 -1.636916e-01 -2.849099e-01 1.922591e-01
2.205000e+11 -2.687236e-01 2.258496e-01 6.210742e-01 -1.973773e-01 6.366285e-01 -1.643685e-01 6.210982e-01 -1.973767e-01 -2.686551e-01 2.260192e-01 6.366139e-01 -1.644294e-01 6.365695e-01 -1.642184e-01 6.365269e-01 -1.643036e-01 -2.845890e-01 1.929476e-01
2.213750e+11 -2.682957e-01 2.266348e-01 6.207645e-01 -1.980882e-01 6.364226e-01 -1.649809e-01 6.207886e-01 -1.980877e-01 -2.682267e-01 2.268050e-01 6.364079e-01 -1.650420e-01 6.363644e-01 -1.648299e-01 6.363215e-01 -1.649153e-01 -2.842671e-01 1.936354e-01
2.222500e+11 -2.678666e-01 2.274191e-01 6.204537e-01 -1.987985e-01 6.362161e-01 -1.655928e-01 6.204780e-01 -1.987981e-01 -2.677971e-01 2.275898e-01 6.362012e-01 -1.656541e-01 6.361586e-01 -1.654411e-01 6.361154e-01 -1.655267e-01 -2.839442e-01 1.943224e-01
2.231250e+11 -2.674361e-01 2.282025e-01 6.201420e-01 -1.995082e-01 6.360089e-01 -1.662044e-01 6.201664e-01 -1.995078e-01 -2.673661e-01 2.283737e-01 6.359939e-01 -1.662659e-01 6.359521e-01 -1.660519e-01 6.359086e-01 -1.661379e-01 -2.836204e-01 1.950087e-01
2.240000e+11 -2.670044e-01 2.289849e-01 6.198293e-01 -2.002172e-01 6.358010e-01 -1.668156e-01 6.198539e-01 -2.002169e-01 -2.669339e-01 2.291565e-01 6.357859e-01 -1.668773e-01 6.357450e-01 -1.666625e-01 6.357011e-01 -1.667487e-01 -2.832955e-01 1.956942e-01
2.248750e+11 -2.665714e-01 2.297663e-01 6.195156e-01 -2.009256e-01 6.355925e-01 -1.674264e-01 6.195404e-01 -2.009254e-01 -2.665004e-01 2.299384e-01 6.355773e-01 -1.674883e-01 6.355371e-01 -1.672728e-01 6.354929e-01 -1.673592e-01 -2.829697e-01 1.963790e-01
2.257500e+11 -2.661371e-01 2.305467e-01 6.192009e-01 -2.016334e-01 6.353833e-01 -1.680368e-01 6.192259e-01 -2.016333e-01 -2.660655e-01 2.307194e-01 6.353680e-01 -1.680989e-01 6.353286e-01 -1.678828e-01 6.352841e-01 -1.679694e-01 -2.826430e-01 1.970630e-01
2.266250e+11 -2.657015e-01 2.313262e-01 6.188853e-01 -2.023406e-01 6.351735e-01 -1.686468e-01 6.189104e-01 -2.023405e-01 -2.656294e-01 2.314993e-01 6.351581e-01 -1.687091e-01 6.351194e-01 -1.684925e-01 6.350745e-01 -1.685793e-01 -2.823153e-01 1.977463e-01
2.275000e+11 -2.652645e-01 2.321046e-01 6.185686e-01 -2.030471e-01 6.349631e-01 -1.692564e-01 6.185939e-01 -2.030471e-01 -2.651920e-01 2.322783e-01 6.349475e-01 -1.693190e-01 6.349095e-01 -1.691018e-01 6.348643e-01 -1.691889e-01 -2.819866e-01 1.984288e-01
2.283750e+11 -2.648263e-01 2.328821e-01 6.182510e-01 -2.037529e-01 6.347520e-01 -1.698657e-01 6.182765e-01 -2.037531e-01 -2.647532e-01 2.330562e-01 6.347363e-01 -1.699284e-01 6.346989e-01 -1.697109e-01 6.346534e-01 -1.697982e-01 -2.816570e-01 1.991106e-01
2.292500e+11 -2.643868e-01 2.336585e-01 6.179324e-01 -2.044581e-01 6.345403e-01 -1.704745e-01 6.179580e-01 -2.044584e-01 -2.643132e-01 2.338332e-01 6.345245e-01 -1.705375e-01 6.344876e-01 -1.703196e-01 6.344417e-01 -1.704071e-01 -2.813265e-01 1.997916e-01
2.301250e+11 -2.639460e-01 2.344339e-01 6.176128e-01 -2.051627e-01 6.343280e-01 -1.710830e-01 6.176386e-01 -2.051630e-01 -2.638719e-01 2.346091e-01 6.343120e-01 -1.711462e-01 6.342756e-01 -1.709280e-01 6.342294e-01 -1.710157e-01 -2.809950e-01 2.004718e-01
2.310000e+11 -2.635039e-01 2.352084e-01 6.172922e-01 -2.058666e-01 6.341150e-01 -1.716911e-01 6.173182e-01 -2.058670e-01 -2.634293e-01 2.353840e-01 6.340989e-01 -1.717545e-01 6.340629e-01 -1.715360e-01 6.340164e-01 -1.716240e-01 -2.806627e-01 2.011514e-01
2.318750e+11 -2.630605e-01 2.359817e-01 6.169707e-01 -2.065698e-01 6.339015e-01 -1.722988e-01 6.169968e-01 -2.065703e-01 -2.629854e-01 2.361578e-01 6.338852e-01 -1.723624e-01 6.338495e-01 -1.721437e-01 6.338026e-01 -1.722319e-01 -2.803294e-01 2.018301e-01
2.327500e+11 -2.626158e-01 2.367541e-01 6.166481e-01 -2.072723e-01 6.336873e-01 -1.729061e-01 6.166744e-01 -2.072729e-01 -2.625401e-01 2.369307e-01 6.336709e-01 -1.729700e-01 6.336354e-01 -1.727511e-01 6.335882e-01 -1.728395e-01 -2.799952e-01 2.025082e-01
2.336250e+11 -2.621698e-01 2.375254e-01 6.163246e-01 -2.079741e-01 6.334725e-01 -1.735131e-01 6.163510e-01 -2.079748e-01 -2.620936e-01 2.377024e-01 6.334560e-01 -1.735772e-01 6.334206e-01 -1.733581e-01 6.333731e-01 -1.734467e-01 -2.796601e-01 2.031854e-01
2.345000e+11 -2.617226e-01 2.382956e-01 6.160001e-01 -2.086752e-01 6.332571e-01 -1.741197e-01 6.160267e-01 -2.086760e-01 -2.616459e-01 2.384731e-01 6.332405e-01 -1.741840e-01 6.332051e-01 -1.739648e-01 6.331572e-01 -1.740536e-01 -2.793241e-01 2.038620e-01
2.353750e+11 -2.612741e-01 2.390647e-01 6.156746e-01 -2.093756e-01 6.330411e-01 -1.747259e-01 6.157014e-01 -2.093765e-01 -2.611968e-01 2.392428e-01 6.330244e-01 -1.747904e-01 6.329889e-01 -1.745711e-01 6.329407e-01 -1.746601e-01 -2.789873e-01 2.045377e-01
2.362500e+11 -2.608242e-01 2.398328e-01 6.153482e-01 -2.100753e-01 6.328246e-01 -1.753318e-01 6.153751e-01 -2.100763e-01 -2.607465e-01 2.400113e-01 6.328077e-01 -1.753965e-01 6.327720e-01 -1.751770e-01 6.327235e-01 -1.752663e-01 -2.786495e-01 2.052128e-01
2.371250e+11 -2.603732e-01 2.405998e-01 6.150208e-01 -2.107743e-01 6.326074e-01 -1.759373e-01 6.150479e-01 -2.107753e-01 -2.602948e-01 2.407788e-01 6.325904e-01 -1.760021e-01 6.325544e-01 -1.757826e-01 6.325055e-01 -1.758721e-01 -2.783109e-01 2.058871e-01
2.380000e+11 -2.599208e-01 2.413657e-01 6.146924e-01 -2.114725e-01 6.323896e-01 -1.765424e-01 6.147197e-01 -2.114737e-01 -2.598420e-01 2.415452e-01 6.323724e-01 -1.766075e-01 6.323362e-01 -1.763877e-01 6.322869e-01 -1.764774e-01 -2.779714e-01 2.065607e-01
2.388750e+11 -2.594672e-01 2.421305e-01 6.143631e-01 -2.121700e-01 6.321712e-01 -1.771471e-01 6.143906e-01 -2.121712e-01 -2.593879e-01 2.423105e-01 6.321539e-01 -1.772124e-01 6.321172e-01 -1.769925e-01 6.320676e-01 -1.770824e-01 -2.776310e-01 2.072335e-01
2.397500e+11 -2.590124e-01 2.428942e-01 6.140329e-01 -2.128668e-01 6.319523e-01 -1.777515e-01 6.140605e-01 -2.128681e-01 -2.589325e-01 2.430746e-01 6.319349e-01 -1.778171e-01 6.318975e-01 -1.775969e-01 6.318476e-01 -1.776871e-01 -2.772897e-01 2.079056e-01
2.406250e+11 -2.585563e-01 2.436568e-01 6.137017e-01 -2.135628e-01 6.317327e-01 -1.783556e-01 6.137295e-01 -2.135642e-01 -2.584759e-01 2.438377e-01 6.317152e-01 -1.784213e-01 6.316772e-01 -1.782009e-01 6.316270e-01 -1.782913e-01 -2.769476e-01 2.085770e-01
2.415000e+11 -2.580990e-01 2.444183e-01 6.133696e-01 -2.142580e-01 6.315126e-01 -1.789593e-01 6.133975e-01 -2.142595e-01 -2.580181e-01 2.445996e-01 6.314949e-01 -1.790252e-01 6.314562e-01 -1.788045e-01 6.314056e-01 -1.788951e-01 -2.766046e-01 2.092477e-01
2.423750e+11 -2.576405e-01 2.451786e-01 6.130365e-01 -2.149525e-01 6.312919e-01 -1.795626e-01 6.130647e-01 -2.149541e-01 -2.575590e-01 2.453604e-01 6.312741e-01 -1.796288e-01 6.312345e-01 -1.794077e-01 6.311836e-01 -1.794985e-01 -2.762608e-01 2.099177e-01
2.432500e+11 -2.571808e-01 2.459378e-01 6.127026e-01 -2.156462e-01 6.310706e-01 -1.801656e-01 6.127309e-01 -2.156479e-01 -2.570987e-01 2.461201e-01 6.310526e-01 -1.802320e-01 6.310122e-01 -1.800104e-01 6.309609e-01 -1.801014e-01 -2.759161e-01 2.105869e-01
2.441250e+11 -2.567199e-01 2.466959e-01 6.123678e-01 -2.163392e-01 6.308487e-01 -1.807683e-01 6.123962e-01 -2.163410e-01 -2.566373e-01 2.468786e-01 6.308306e-01 -1.808348e-01 6.307892e-01 -1.806128e-01 6.307376e-01 -1.807040e-01 -2.755706e-01 2.112554e-01
2.450000e+11 -2.562577e-01 2.474528e-01 6.120320e-01 -2.170314e-01 6.306262e-01 -1.813706e-01 6.120607e-01 -2.170333e-01 -2.561746e-01 2.476360e-01 6.306080e-01 -1.814374e-01 6.305656e-01 -1.812147e-01 6.305136e-01 -1.813061e-01 -2.752242e-01 2.119233e-01
2.458750e+11 -2.557945e-01 2.482086e-01 6.116954e-01 -2.177228e-01 6.304031e-01 -1.819726e-01 6.117242e-01 -2.177248e-01 -2.557108e-01 2.483922e-01 6.303848e-01 -1.820395e-01 6.303413e-01 -1.818162e-01 6.302889e-01 -1.819078e-01 -2.748770e-01 2.125904e-01
2.467500e+11 -2.553300e-01 2.489632e-01 6.113579e-01 -2.184134e-01 6.301795e-01 -1.825742e-01 6.113869e-01 -2.184155e-01 -2.552458e-01 2.491473e-01 6.301610e-01 -1.826414e-01 6.301163e-01 -1.824173e-01 6.300637e-01 -1.825091e-01 -2.745289e-01 2.132568e-01
2.476250e+11 -2.548644e-01 2.497167e-01 6.110196e-01 -2.191032e-01 6.299553e-01 -1.831755e-01 6.110488e-01 -2.191054e-01 -2.547797e-01 2.499012e-01 6.299367e-01 -1.832429e-01 6.298908e-01 -1.830180e-01 6.298377e-01 -1.831100e-01 -2.741799e-01 2.139225e-01
2.485000e+11 -2.543977e-01 2.504690e-01 6.106804e-01 -2.197923e-01 6.297305e-01 -1.837765e-01 6.107097e-01 -2.197946e-01 -2.543124e-01 2.506540e-01 6.297118e-01 -1.838441e-01 6.296646e-01 -1.836182e-01 6.296112e-01 -1.837104e-01 -2.738302e-01 2.145876e-01
2.493750e+11 -2.539298e-01 2.512202e-01 6.103404e-01 -2.204805e-01 6.295051e-01 -1.843772e-01 6.103699e-01 -2.204830e-01 -2.538440e-01 2.514056e-01 6.294862e-01 -1.844450e-01 6.294378e-01 -1.842180e-01 6.293841e-01 -1.843104e-01 -2.734795e-01 2.152519e-01
2.502500e+11 -2.534608e-01 2.519702e-01 6.099995e-01 -2.211680e-01 6.292791e-01 -1.849775e-01 6.100292e-01 -2.211706e-01 -2.533745e-01 2.521560e-01 6.292601e-01 -1.850455e-01 6.292104e-01 -1.848173e-01 6.291563e-01 -1.849099e-01 -2.731280e-01 2.159156e-01
2.511250e+11 -2.529907e-01 2.527190e-01 6.096578e-01 -2.218547e-01 6.290525e-01 -1.855775e-01 6.096877e-01 -2.218574e-01 -2.529038e-01 2.529054e-01 6.290334e-01 -1.856457e-01 6.289824e-01 -1.854162e-01 6.289279e-01 -1.855090e-01 -2.727757e-01 2.165786e-01
2.520000e+11 -2.525195e-01 2.534667e-01 6.093154e-01 -2.225407e-01 6.288254e-01 -1.861772e-01 6.093454e-01 -2.225434e-01 -2.524321e-01 2.536535e-01 6.288061e-01 -1.862456e-01 6.287538e-01 -1.860147e-01 6.286990e-01 -1.861077e-01 -2.724225e-01 2.172409e-01
2.528750e+11 -2.520472e-01 2.542133e-01 6.089721e-01 -2.232258e-01 6.285976e-01 -1.867766e-01 6.090023e-01 -2.232287e-01 -2.519593e-01 2.544005e-01 6.285782e-01 -1.868452e-01 6.285246e-01 -1.866127e-01 6.284694e-01 -1.867059e-01 -2.720685e-01 2.179025e-01
2.537500e+11 -2.515739e-01 2.549587e-01 6.086280e-01 -2.239102e-01 6.283693e-01 -1.873756e-01 6.086583e-01 -2.239132e-01 -2.514853e-01 2.551464e-01 6.283497e-01 -1.874444e-01 6.282948e-01 -1.872103e-01 6.282393e-01 -1.873037e-01 -2.717136e-01 2.185635e-01
2.546250e+11 -2.510994e-01 2.557030e-01 6.082831e-01 -2.245938e-01 6.281403e-01 -1.879744e-01 6.083137e-01 -2.245969e-01 -2.510104e-01 2.558911e-01 6.281206e-01 -1.880433e-01 6.280644e-01 -1.878075e-01 6.280086e-01 -1.879011e-01 -2.713578e-01 2.192237e-01
2.555000e+11 -2.506240e-01 2.564461e-01 6.079375e-01 -2.252767e-01 6.279107e-01 -1.885728e-01 6.079682e-01 -2.252799e-01 -2.505343e-01 2.566346e-01 6.278909e-01 -1.886420e-01 6.278335e-01 -1.884043e-01 6.277773e-01 -1.884980e-01 -2.710012e-01 2.198833e-01
2.563750e+11 -2.501474e-01 2.571881e-01 6.075911e-01 -2.259588e-01 6.276806e-01 -1.891709e-01 6.076220e-01 -2.259621e-01 -2.500573e-01 2.573771e-01 6.276606e-01 -1.892402e-01 6.276021e-01 -1.890006e-01 6.275455e-01 -1.890945e-01 -2.706437e-01 2.205423e-01
2.572500e+11 -2.496699e-01 2.579290e-01 6.072439e-01 -2.266401e-01 6.274498e-01 -1.897686e-01 6.072750e-01 -2.266435e-01 -2.495791e-01 2.581184e-01 6.274297e-01 -1.898382e-01 6.273700e-01 -1.895965e-01 6.273131e-01 -1.896906e-01 -2.702854e-01 2.212006e-01
2.581250e+11 -2.491913e-01 2.586688e-01 6.068960e-01 -2.273207e-01 6.272184e-01 -1.903661e-01 6.069272e-01 -2.273242e-01 -2.491000e-01 2.588586e-01 6.271982e-01 -1.904359e-01 6.271375e-01 -1.901919e-01 6.270802e-01 -1.902863e-01 -2.699262e-01 2.218581e-01
2.590000e+11 -2.487116e-01 2.594074e-01 6.065473e-01 -2.280006e-01 6.269864e-01 -1.909632e-01 6.065787e-01 -2.280042e-01 -2.486198e-01 2.595976e-01 6.269661e-01 -1.910332e-01 6.269044e-01 -1.907870e-01 6.268467e-01 -1.908815e-01 -2.695661e-01 2.225151e-01
2.598750e+11 -2.482310e-01 2.601449e-01 6.061979e-01 -2.286797e-01 6.267538e-01 -1.915600e-01 6.062295e-01 -2.286835e-01 -2.481386e-01 2.603356e-01 6.267333e-01 -1.916302e-01 6.266707e-01 -1.913816e-01 6.266127e-01 -1.914763e-01 -2.692051e-01 2.231713e-01
2.607500e+11 -2.477493e-01 2.608814e-01 6.058477e-01 -2.293581e-01 6.265206e-01 -1.921565e-01 6.058795e-01 -2.293620e-01 -2.476564e-01 2.610724e-01 6.264999e-01 -1.922269e-01 6.264365e-01 -1.919759e-01 6.263782e-01 -1.920708e-01 -2.688432e-01 2.238269e-01
2.616250e+11 -2.472666e-01 2.616167e-01 6.054968e-01 -2.300358e-01 6.262867e-01 -1.927527e-01 6.055288e-01 -2.300398e-01 -2.471731e-01 2.618082e-01 6.262659e-01 -1.928233e-01 6.262018e-01 -1.925697e-01 6.261431e-01 -1.926648e-01 -2.684805e-01 2.244818e-01
2.625000e+11 -2.467829e-01 2.623510e-01 6.051452e-01 -2.307128e-01 6.260522e-01 -1.933485e-01 6.051773e-01 -2.307169e-01 -2.466889e-01 2.625429e-01 6.260313e-01 -1.934193e-01 6.259666e-01 -1.931632e-01 6.259075e-01 -1.932584e-01 -2.681168e-01 2.251361e-01
2.633750e+11 -2.462982e-01 2.630841e-01 6.047928e-01 -2.313891e-01 6.258171e-01 -1.939440e-01 6.048251e-01 -2.313933e-01 -2.462036e-01 2.632765e-01 6.257960e-01 -1.940150e-01 6.257308e-01 -1.937562e-01 6.256714e-01 -1.938517e-01 -2.677523e-01 2.257896e-01
2.642500e+11 -2.458125e-01 2.638162e-01 6.044397e-01 -2.320646e-01 6.255813e-01 -1.945392e-01 6.044722e-01 -2.320690e-01 -2.457174e-01 2.640090e-01 6.255601e-01 -1.946104e-01 6.254945e-01 -1.943489e-01 6.254347e-01 -1.944445e-01 -2.673868e-01 2.264425e-01
2.651250e+11 -2.453258e-01 2.645473e-01 6.040859e-01 -2.327395e-01 6.253449e-01 -1.951340e-01 6.041185e-01 -2.327440e-01 -2.452301e-01 2.647404e-01 6.253236e-01 -1.952054e-01 6.252577e-01 -1.949412e-01 6.251976e-01 -1.950370e-01 -2.670205e-01 2.270947e-01
2.660000e+11 -2.448380e-01 2.652773e-01 6.037313e-01 -2.334137e-01 6.251079e-01 -1.957285e-01 6.037641e-01 -2.334183e-01 -2.447418e-01 2.654708e-01 6.250864e-01 -1.958001e-01 6.250204e-01 -1.955331e-01 6.249599e-01 -1.956291e-01 -2.666532e-01 2.277462e-01
2.668750e+11 -2.443493e-01 2.660062e-01 6.033760e-01 -2.340873e-01 6.248702e-01 -1.963226e-01 6.034090e-01 -2.340920e-01 -2.442525e-01 2.662002e-01 6.248486e-01 -1.963944e-01 6.247825e-01 -1.961247e-01 6.247216e-01 -1.962208e-01 -2.662850e-01 2.283970e-01
2.677500e+11 -2.438596e-01 2.667341e-01 6.030200e-01 -2.347601e-01 6.246318e-01 -1.969164e-01 6.030531e-01 -2.347649e-01 -2.437622e-01 2.669285e-01 6.246101e-01 -1.969884e-01 6.245441e-01 -1.967159e-01 6.244829e-01 -1.968122e-01 -2.659159e-01 2.290471e-01
2.686250e+11 -2.433688e-01 2.674609e-01 6.026632e-01 -2.354323e-01 6.243928e-01 -1.975098e-01 6.026965e-01 -2.354373e-01 -2.432709e-01 2.676557e-01 6.243709e-01 -1.975820e-01 6.243052e-01 -1.973067e-01 6.242436e-01 -1.974032e-01 -2.655459e-01 2.296965e-01
2.695000e+11 -2.428770e-01 2.681867e-01 6.023056e-01 -2.361039e-01 6.241532e-01 -1.981029e-01 6.023391e-01 -2.361089e-01 -2.427785e-01 2.683819e-01 6.241312e-01 -1.981753e-01 6.240658e-01 -1.978972e-01 6.240038e-01 -1.979938e-01 -2.651749e-01 2.303452e-01
2.703750e+11 -2.423842e-01 2.689115e-01 6.019473e-01 -2.367748e-01 6.239129e-01 -1.986956e-01 6.019809e-01 -2.367800e-01 -2.422852e-01 2.691071e-01 6.238907e-01 -1.987682e-01 6.238258e-01 -1.984873e-01 6.237635e-01 -1.985842e-01 -2.648030e-01 2.309932e-01
2.712500e+11 -2.418904e-01 2.696353e-01 6.015882e-01 -2.374450e-01 6.236719e-01 -1.992879e-01 6.016220e-01 -2.374503e-01 -2.417908e-01 2.698313e-01 6.236496e-01 -1.993607e-01 6.235853e-01 -1.990771e-01 6.235226e-01 -1.991741e-01 -2.644302e-01 2.316404e-01
2.721250e+11 -2.413955e-01 2.703580e-01 6.012283e-01 -2.381146e-01 6.234303e-01 -1.998799e-01 6.012623e-01 -2.381201e-01 -2.412953e-01 2.705544e-01 6.234079e-01 -1.999528e-01 6.233443e-01 -1.996666e-01 6.232812e-01 -1.997638e-01 -2.640565e-01 2.322870e-01
2.730000e+11 -2.408996e-01 2.710797e-01 6.008677e-01 -2.387836e-01 6.231880e-01 -2.004714e-01 6.009019e-01 -2.387892e-01 -2.407988e-01 2.712765e-01 6.231654e-01 -2.005446e-01 6.231027e-01 -2.002557e-01 6.230393e-01 -2.003531e-01 -2.636818e-01 2.329327e-01
2.738750e+11 -2.404026e-01 2.718004e-01 6.005063e-01 -2.394519e-01 6.229451e-01 -2.010626e-01 6.005406e-01 -2.394576e-01 -2.403013e-01 2.719976e-01 6.229224e-01 -2.011359e-01 6.228606e-01 -2.008445e-01 6.227968e-01 -2.009421e-01 -2.633061e-01 2.335778e-01
2.747500e+11 -2.399046e-01 2.725201e-01 6.001441e-01 -2.401196e-01 6.227015e-01 -2.016533e-01 6.001786e-01 -2.401254e-01 -2.398027e-01 2.727177e-01 6.226786e-01 -2.017269e-01 6.226179e-01 -2.014330e-01 6.225537e-01 -2.015307e-01 -2.629295e-01 2.342220e-01
2.756250e+11 -2.394055e-01 2.732388e-01 5.997810e-01 -2.407867e-01 6.224572e-01 -2.022437e-01 5.998157e-01 -2.407926e-01 -2.393030e-01 2.734367e-01 6.224342e-01 -2.023174e-01 6.223746e-01 -2.020212e-01 6.223101e-01 -2.021190e-01 -2.625520e-01 2.348655e-01
2.765000e+11 -2.389053e-01 2.739564e-01 5.994172e-01 -2.414531e-01 6.222123e-01 -2.028336e-01 5.994521e-01 -2.414591e-01 -2.388023e-01 2.741548e-01 6.221891e-01 -2.029075e-01 6.221308e-01 -2.026090e-01 6.220659e-01 -2.027070e-01 -2.621735e-01 2.355083e-01
2.773750e+11 -2.384040e-01 2.746730e-01 5.990525e-01 -2.421188e-01 6.219667e-01 -2.034231e-01 5.990876e-01 -2.421250e-01 -2.383004e-01 2.748718e-01 6.219434e-01 -2.034972e-01 6.218864e-01 -2.031965e-01 6.218212e-01 -2.032947e-01 -2.617941e-01 2.361502e-01
2.782500e+11 -2.379016e-01 2.753886e-01 5.986870e-01 -2.427839e-01 6.217205e-01 -2.040122e-01 5.987223e-01 -2.427903e-01 -2.377975e-01 2.755877e-01 6.216970e-01 -2.040865e-01 6.216414e-01 -2.037837e-01 6.215758e-01 -2.038821e-01 -2.614137e-01 2.367913e-01
2.791250e+11 -2.373982e-01 2.761032e-01 5.983207e-01 -2.434484e-01 6.214736e-01 -2.046008e-01 5.983561e-01 -2.434549e-01 -2.372935e-01 2.763027e-01 6.214500e-01 -2.046753e-01 6.213958e-01 -2.043706e-01 6.213299e-01 -2.044691e-01 -2.610324e-01 2.374317e-01
2.800000e+11 -2.368936e-01 2.768167e-01 5.979535e-01 -2.441122e-01 6.212261e-01 -2.051890e-01 5.979890e-01 -2.441188e-01 -2.367883e-01 2.770166e-01 6.212023e-01 -2.052637e-01 6.211497e-01 -2.049572e-01 6.210833e-01 -2.050558e-01 -2.606502e-01 2.380712e-01
2.808750e+11 -2.363879e-01 2.775292e-01 5.975854e-01 -2.447753e-01 6.209778e-01 -2.057768e-01 5.976211e-01 -2.447821e-01 -2.362820e-01 2.777294e-01 6.209539e-01 -2.058516e-01 6.209029e-01 -2.055434e-01 6.208361e-01 -2.056422e-01 -2.602670e-01 2.387099e-01
2.817500e+11 -2.358810e-01 2.782406e-01 5.972164e-01 -2.454378e-01 6.207290e-01 -2.063640e-01 5.972524e-01 -2.454447e-01 -2.357746e-01 2.784412e-01 6.207049e-01 -2.064391e-01 6.206555e-01 -2.061293e-01 6.205884e-01 -2.062282e-01 -2.598828e-01 2.393478e-01
2.826250e+11 -2.353730e-01 2.789509e-01 5.968466e-01 -2.460996e-01 6.204795e-01 -2.069508e-01 5.968827e-01 -2.461066e-01 -2.352661e-01 2.791519e-01 6.204553e-01 -2.070261e-01 6.204074e-01 -2.067148e-01 6.203399e-01 -2.068139e-01 -2.594978e-01 2.399848e-01
2.835000e+11 -2.348639e-01 2.796602e-01 5.964759e-01 -2.467607e-01 6.202293e-01 -2.075372e-01 5.965122e-01 -2.467678e-01 -2.347564e-01 2.798616e-01 6.202050e-01 -2.076126e-01 6.201588e-01 -2.073000e-01 6.200909e-01 -2.073993e-01 -2.591118e-01 2.406210e-01
2.843750e+11 -2.343536e-01 2.803684e-01 5.961043e-01 -2.474210e-01 6.199785e-01 -2.081230e-01 5.961407e-01 -2.474284e-01 -2.342455e-01 2.805701e-01 6.199541e-01 -2.081987e-01 6.199094e-01 -2.078849e-01 6.198412e-01 -2.079843e-01 -2.587248e-01 2.412563e-01
2.852500e+11 -2.338422e-01 2.810755e-01 5.957317e-01 -2.480807e-01 6.197271e-01 -2.087084e-01 5.957684e-01 -2.480882e-01 -2.337335e-01 2.812776e-01 6.197025e-01 -2.087842e-01 6.196595e-01 -2.084694e-01 6.195909e-01 -2.085690e-01 -2.583370e-01 2.418907e-01
2.861250e+11 -2.333296e-01 2.817814e-01 5.953583e-01 -2.487397e-01 6.194751e-01 -2.092933e-01 5.953951e-01 -2.487473e-01 -2.332203e-01 2.819839e-01 6.194503e-01 -2.093693e-01 6.194089e-01 -2.090536e-01 6.193399e-01 -2.091533e-01 -2.579482e-01 2.425243e-01
2.870000e+11 -2.328158e-01 2.824863e-01 5.949839e-01 -2.493979e-01 6.192224e-01 -2.098777e-01 5.950209e-01 -2.494056e-01 -2.327059e-01 2.826891e-01 6.191975e-01 -2.099539e-01 6.191576e-01 -2.096374e-01 6.190882e-01 -2.097373e-01 -2.575585e-01 2.431569e-01
2.878750e+11 -2.323008e-01 2.831900e-01 5.946086e-01 -2.500553e-01 6.189691e-01 -2.104615e-01 5.946458e-01 -2.500632e-01 -2.321904e-01 2.833932e-01 6.189440e-01 -2.105379e-01 6.189056e-01 -2.102208e-01 6.188359e-01 -2.103208e-01 -2.571680e-01 2.437887e-01
2.887500e+11 -2.317847e-01 2.838925e-01 5.942324e-01 -2.507120e-01 6.187152e-01 -2.110449e-01 5.942698e-01 -2.507200e-01 -2.316737e-01 2.840961e-01 6.186900e-01 -2.111215e-01 6.186530e-01 -2.108038e-01 6.185829e-01 -2.109040e-01 -2.567765e-01 2.444195e-01
2.896250e+11 -2.312674e-01 2.845939e-01 5.938553e-01 -2.513679e-01 6.184607e-01 -2.116277e-01 5.938928e-01 -2.513760e-01 -2.311558e-01 2.847978e-01 6.184353e-01 -2.117045e-01 6.183997e-01 -2.113865e-01 6.183292e-01 -2.114868e-01 -2.563841e-01 2.450494e-01
2.905000e+11 -2.307489e-01 2.852941e-01 5.934772e-01 -2.520229e-01 6.182056e-01 -2.122101e-01 5.935149e-01 -2.520313e-01 -2.306368e-01 2.854984e-01 6.181801e-01 -2.122870e-01 6.181456e-01 -2.119687e-01 6.180748e-01 -2.120692e-01 -2.559909e-01 2.456784e-01
2.913750e+11 -2.302293e-01 2.859931e-01 5.930982e-01 -2.526772e-01 6.179499e-01 -2.127919e-01 5.931361e-01 -2.526857e-01 -2.301165e-01 2.861977e-01 6.179242e-01 -2.128690e-01 6.178909e-01 -2.125505e-01 6.178197e-01 -2.126511e-01 -2.555967e-01 2.463065e-01
2.922500e+11 -2.297085e-01 2.866908e-01 5.927183e-01 -2.533306e-01 6.176936e-01 -2.133731e-01 5.927563e-01 -2.533392e-01 -2.295951e-01 2.868958e-01 6.176678e-01 -2.134505e-01 6.176356e-01 -2.131319e-01 6.175639e-01 -2.132327e-01 -2.552017e-01 2.469336e-01
2.931250e+11 -2.291865e-01 2.873873e-01 5.923374e-01 -2.539832e-01 6.174367e-01 -2.139539e-01 5.923757e-01 -2.539920e-01 -2.290726e-01 2.875926e-01 6.174107e-01 -2.140314e-01 6.173795e-01 -2.137129e-01 6.173075e-01 -2.138138e-01 -2.548059e-01 2.475598e-01
2.940000e+11 -2.286633e-01 2.880826e-01 5.919557e-01 -2.546349e-01 6.171793e-01 -2.145341e-01 5.919941e-01 -2.546438e-01 -2.285489e-01 2.882882e-01 6.171531e-01 -2.146118e-01 6.171227e-01 -2.142934e-01 6.170503e-01 -2.143944e-01 -2.544092e-01 2.481850e-01
2.948750e+11 -2.281390e-01 2.887765e-01 5.915730e-01 -2.552857e-01 6.169213e-01 -2.151138e-01 5.916116e-01 -2.552948e-01 -2.280240e-01 2.889825e-01 6.168950e-01 -2.151917e-01 6.168652e-01 -2.148734e-01 6.167924e-01 -2.149746e-01 -2.540117e-01 2.488093e-01
2.957500e+11 -2.276136e-01 2.894692e-01 5.911894e-01 -2.559356e-01 6.166627e-01 -2.156930e-01 5.912282e-01 -2.559449e-01 -2.274979e-01 2.896756e-01 6.166363e-01 -2.157710e-01 6.166070e-01 -2.154530e-01 6.165339e-01 -2.155543e-01 -2.536133e-01 2.494326e-01
2.966250e+11 -2.270870e-01 2.901606e-01 5.908050e-01 -2.565846e-01 6.164036e-01 -2.162716e-01 5.908439e-01 -2.565940e-01 -2.269708e-01 2.903673e-01 6.163770e-01 -2.163498e-01 6.163482e-01 -2.160320e-01 6.162746e-01 -2.161335e-01 -2.532142e-01 2.500550e-01
2.975000e+11 -2.265593e-01 2.908507e-01 5.904196e-01 -2.572327e-01 6.161439e-01 -2.168497e-01 5.904587e-01 -2.572422e-01 -2.264425e-01 2.910577e-01 6.161172e-01 -2.169281e-01 6.160886e-01 -2.166106e-01 6.160147e-01 -2.167122e-01 -2.528142e-01 2.506764e-01
2.983750e+11 -2.260305e-01 2.915394e-01 5.900334e-01 -2.578798e-01 6.158837e-01 -2.174272e-01 5.900726e-01 -2.578895e-01 -2.259131e-01 2.917468e-01 6.158569e-01 -2.175059e-01 6.158283e-01 -2.171887e-01 6.157540e-01 -2.172904e-01 -2.524135e-01 2.512969e-01
2.992500e+11 -2.255006e-01 2.922268e-01 5.896463e-01 -2.585260e-01 6.156230e-01 -2.180043e-01 5.896857e-01 -2.585358e-01 -2.253826e-01 2.924345e-01 6.155960e-01 -2.180831e-01 6.155674e-01 -2.177662e-01 6.154927e-01 -2.178680e-01 -2.520119e-01 2.519163e-01
3.001250e+11 -2.249696e-01 2.929128e-01 5.892583e-01 -2.591712e-01 6.153617e-01 -2.185808e-01 5.892979e-01 -2.591812e-01 -2.248510e-01 2.931208e-01 6.153346e-01 -2.186598e-01 6.153058e-01 -2.183432e-01 6.152307e-01 -2.184452e-01 -2.516096e-01 2.525349e-01
3.010000e+11 -2.244375e-01 2.935974e-01 5.888695e-01 -2.598154e-01 6.151000e-01 -2.191568e-01 5.889093e-01 -2.598256e-01 -2.243184e-01 2.938058e-01 6.150727e-01 -2.192359e-01 6.150435e-01 -2.189197e-01 6.149681e-01 -2.190217e-01 -2.512065e-01 2.531524e-01
3.018750e+11 -2.239044e-01 2.942807e-01 5.884799e-01 -2.604587e-01 6.148377e-01 -2.197322e-01 5.885199e-01 -2.604690e-01 -2.237847e-01 2.944894e-01 6.148102e-01 -2.198116e-01 6.147806e-01 -2.194955e-01 6.147047e-01 -2.195978e-01 -2.508027e-01 2.537690e-01
3.027500e+11 -2.233703e-01 2.949626e-01 5.880895e-01 -2.611009e-01 6.145749e-01 -2.203072e-01 5.881297e-01 -2.611114e-01 -2.232499e-01 2.951716e-01 6.145473e-01 -2.203867e-01 6.145170e-01 -2.200709e-01 6.144407e-01 -2.201732e-01 -2.503981e-01 2.543847e-01
3.036250e+11 -2.228351e-01 2.956431e-01 5.876983e-01 -2.617421e-01 6.143117e-01 -2.208817e-01 5.877387e-01 -2.617528e-01 -2.227142e-01 2.958525e-01 6.142839e-01 -2.209614e-01 6.142527e-01 -2.206456e-01 6.141761e-01 -2.207481e-01 -2.499928e-01 2.549993e-01
3.045000e+11 -2.222989e-01 2.963222e-01 5.873064e-01 -2.623824e-01 6.140479e-01 -2.214556e-01 5.873469e-01 -2.623932e-01 -2.221774e-01 2.965319e-01 6.140200e-01 -2.215355e-01 6.139878e-01 -2.212198e-01 6.139108e-01 -2.213224e-01 -2.495868e-01 2.556131e-01
3.053750e+11 -2.217618e-01 2.969999e-01 5.869137e-01 -2.630216e-01 6.137836e-01 -2.220291e-01 5.869544e-01 -2.630326e-01 -2.216397e-01 2.972099e-01 6.137556e-01 -2.221091e-01 6.137223e-01 -2.217934e-01 6.136450e-01 -2.218961e-01 -2.491801e-01 2.562259e-01
3.062500e+11 -2.212237e-01 2.976763e-01 5.865203e-01 -2.636598e-01 6.135189e-01 -2.226020e-01 5.865611e-01 -2.636709e-01 -2.211010e-01 2.978866e-01 6.134907e-01 -2.226823e-01 6.134562e-01 -2.223664e-01 6.133784e-01 -2.224693e-01 -2.487726e-01 2.568378e-01
3.071250e+11 -2.206847e-01 2.983512e-01 5.861261e-01 -2.642970e-01 6.132537e-01 -2.231745e-01 5.861671e-01 -2.643083e-01 -2.205614e-01 2.985618e-01 6.132253e-01 -2.232549e-01 6.131895e-01 -2.229388e-01 6.131113e-01 -2.230418e-01 -2.483645e-01 2.574487e-01
3.080000e+11 -2.201447e-01 2.990247e-01 5.857313e-01 -2.649332e-01 6.129880e-01 -2.237465e-01 5.857725e-01 -2.649447e-01 -2.200208e-01 2.992356e-01 6.129595e-01 -2.238271e-01 6.129222e-01 -2.235106e-01 6.128436e-01 -2.236137e-01 -2.479557e-01 2.580587e-01
3.088750e+11 -2.196039e-01 2.996968e-01 5.853358e-01 -2.655684e-01 6.127218e-01 -2.243181e-01 5.853771e-01 -2.655801e-01 -2.194794e-01 2.999081e-01 6.126931e-01 -2.243988e-01 6.126543e-01 -2.240819e-01 6.125754e-01 -2.241851e-01 -2.475462e-01 2.586679e-01
3.097500e+11 -2.190621e-01 3.003676e-01 5.849396e-01 -2.662026e-01 6.124551e-01 -2.248891e-01 5.849812e-01 -2.662144e-01 -2.189371e-01 3.005791e-01 6.124263e-01 -2.249701e-01 6.123858e-01 -2.246525e-01 6.123065e-01 -2.247558e-01 -2.471360e-01 2.592761e-01
3.106250e+11 -2.185195e-01 3.010370e-01 5.845428e-01 -2.668358e-01 6.121880e-01 -2.254598e-01 5.845845e-01 -2.668478e-01 -2.183939e-01 3.012488e-01 6.121590e-01 -2.255409e-01 6.121168e-01 -2.252225e-01 6.120371e-01 -2.253259e-01 -2.467251e-01 2.598834e-01
3.115000e+11 -2.179761e-01 3.017050e-01 5.841454e-01 -2.674681e-01 6.119204e-01 -2.260300e-01 5.841873e-01 -2.674803e-01 -2.178498e-01 3.019171e-01 6.118913e-01 -2.261113e-01 6.118473e-01 -2.257919e-01 6.117672e-01 -2.258954e-01 -2.463136e-01 2.604899e-01
3.123750e+11 -2.174318e-01 3.023716e-01 5.837474e-01 -2.680994e-01 6.116523e-01 -2.265998e-01 5.837894e-01 -2.681117e-01 -2.173049e-01 3.025841e-01 6.116230e-01 -2.266813e-01 6.115772e-01 -2.263607e-01 6.114967e-01 -2.264644e-01 -2.459014e-01 2.610955e-01
3.132500e+11 -2.168867e-01 3.030370e-01 5.833488e-01 -2.687298e-01 6.113838e-01 -2.271692e-01 5.833910e-01 -2.687423e-01 -2.167593e-01 3.032498e-01 6.113543e-01 -2.272508e-01 6.113066e-01 -2.269289e-01 6.112257e-01 -2.270327e-01 -2.454885e-01 2.617003e-01
3.141250e+11 -2.163408e-01 3.037010e-01 5.829496e-01 -2.693592e-01 6.111147e-01 -2.277381e-01 5.829920e-01 -2.693719e-01 -2.162128e-01 3.039141e-01 6.110851e-01 -2.278200e-01 6.110355e-01 -2.274966e-01 6.109543e-01 -2.276005e-01 -2.450750e-01 2.623042e-01
3.150000e+11 -2.157941e-01 3.043637e-01 5.825498e-01 -2.699877e-01 6.108452e-01 -2.283067e-01 5.825924e-01 -2.700006e-01 -2.156655e-01 3.045771e-01 6.108154e-01 -2.283887e-01 6.107640e-01 -2.280637e-01 6.106823e-01 -2.281677e-01 -2.446608e-01 2.629073e-01
3.158750e+11 -2.152466e-01 3.050252e-01 5.821495e-01 -2.706154e-01 6.105752e-01 -2.288749e-01 5.821923e-01 -2.706284e-01 -2.151174e-01 3.052388e-01 6.105452e-01 -2.289571e-01 6.104919e-01 -2.286302e-01 6.104098e-01 -2.287343e-01 -2.442460e-01 2.635095e-01
3.167500e+11 -2.146984e-01 3.056854e-01 5.817487e-01 -2.712421e-01 6.103046e-01 -2.294427e-01 5.817916e-01 -2.712553e-01 -2.145686e-01 3.058993e-01 6.102746e-01 -2.295251e-01 6.102194e-01 -2.291962e-01 6.101369e-01 -2.293004e-01 -2.438305e-01 2.641110e-01
3.176250e+11 -2.141494e-01 3.063443e-01 5.813473e-01 -2.718681e-01 6.100336e-01 -2.300102e-01 5.813904e-01 -2.718815e-01 -2.140189e-01 3.065585e-01 6.100034e-01 -2.300927e-01 6.099464e-01 -2.297616e-01 6.098635e-01 -2.298659e-01 -2.434143e-01 2.647117e-01
3.185000e+11 -2.135996e-01 3.070020e-01 5.809453e-01 -2.724932e-01 6.097621e-01 -2.305773e-01 5.809886e-01 -2.725068e-01 -2.134686e-01 3.072166e-01 6.097317e-01 -2.306600e-01 6.096729e-01 -2.303265e-01 6.095897e-01 -2.304309e-01 -2.429975e-01 2.653116e-01
3.193750e+11 -2.130490e-01 3.076586e-01 5.805429e-01 -2.731175e-01 6.094900e-01 -2.311441e-01 5.805863e-01 -2.731313e-01 -2.129174e-01 3.078734e-01 6.094595e-01 -2.312270e-01 6.093990e-01 -2.308909e-01 6.093154e-01 -2.309954e-01 -2.425800e-01 2.659108e-01
3.202500e+11 -2.124977e-01 3.083140e-01 5.801399e-01 -2.737411e-01 6.092174e-01 -2.317105e-01 5.801835e-01 -2.737550e-01 -2.123655e-01 3.085291e-01 6.091868e-01 -2.317936e-01 6.091247e-01 -2.314548e-01 6.090407e-01 -2.315594e-01 -2.421617e-01 2.665093e-01
3.211250e+11 -2.119456e-01 3.089682e-01 5.797363e-01 -2.743639e-01 6.089443e-01 -2.322767e-01 5.797801e-01 -2.743780e-01 -2.118128e-01 3.091836e-01 6.089135e-01 -2.323599e-01 6.088499e-01 -2.320182e-01 6.087655e-01 -2.321230e-01 -2.417428e-01 2.671070e-01
3.220000e+11 -2.113928e-01 3.096213e-01 5.793323e-01 -2.749860e-01 6.086706e-01 -2.328425e-01 5.793762e-01 -2.750003e-01 -2.112594e-01 3.098370e-01 6.086397e-01 -2.329259e-01 6.085747e-01 -2.325812e-01 6.084899e-01 -2.326860e-01 -2.413232e-01 2.677040e-01
3.228750e+11 -2.108392e-01 3.102733e-01 5.789276e-01 -2.756075e-01 6.083964e-01 -2.334080e-01 5.789717e-01 -2.756219e-01 -2.107052e-01 3.104893e-01 6.083653e-01 -2.334916e-01 6.082991e-01 -2.331437e-01 6.082139e-01 -2.332487e-01 -2.409029e-01 2.683003e-01
3.237500e+11 -2.102847e-01 3.109243e-01 5.785224e-01 -2.762282e-01 6.081216e-01 -2.339732e-01 5.785667e-01 -2.762429e-01 -2.101501e-01 3.111406e-01 6.080903e-01 -2.340570e-01 6.080230e-01 -2.337058e-01 6.079374e-01 -2.338109e-01 -2.404819e-01 2.688960e-01
3.246250e+11 -2.097295e-01 3.115742e-01 5.781167e-01 -2.768484e-01 6.078462e-01 -2.345381e-01 5.781611e-01 -2.768632e-01 -2.095943e-01 3.117908e-01 6.078148e-01 -2.346221e-01 6.077465e-01 -2.342675e-01 6.076605e-01 -2.343727e-01 -2.400601e-01 2.694910e-01
3.255000e+11 -2.091734e-01 3.122231e-01 5.777103e-01 -2.774679e-01 6.075702e-01 -2.351028e-01 5.777549e-01 -2.774830e-01 -2.090376e-01 3.124399e-01 6.075386e-01 -2.351869e-01 6.074695e-01 -2.348289e-01 6.073831e-01 -2.349341e-01 -2.396375e-01 2.700853e-01
3.263750e+11 -2.086166e-01 3.128710e-01 5.773033e-01 -2.780869e-01 6.072936e-01 -2.356672e-01 5.773481e-01 -2.781021e-01 -2.084801e-01 3.130881e-01 6.072618e-01 -2.357515e-01 6.071921e-01 -2.353898e-01 6.071053e-01 -2.354951e-01 -2.392142e-01 2.706790e-01
3.272500e+11 -2.080588e-01 3.135180e-01 5.768957e-01 -2.787053e-01 6.070164e-01 -2.362313e-01 5.769406e-01 -2.787207e-01 -2.079218e-01 3.137353e-01 6.069845e-01 -2.363158e-01 6.069143e-01 -2.359504e-01 6.068271e-01 -2.360558e-01 -2.387901e-01 2.712720e-01
3.281250e+11 -2.075002e-01 3.141640e-01 5.764874e-01 -2.793232e-01 6.067385e-01 -2.367952e-01 5.765325e-01 -2.793388e-01 -2.073625e-01 3.143816e-01 6.067064e-01 -2.368798e-01 6.066360e-01 -2.365107e-01 6.065484e-01 -2.366162e-01 -2.383652e-01 2.718644e-01
3.290000e+11 -2.069406e-01 3.148090e-01 5.760784e-01 -2.799406e-01 6.064599e-01 -2.373588e-01 5.761237e-01 -2.799564e-01 -2.068024e-01 3.150269e-01 6.064277e-01 -2.374436e-01 6.063572e-01 -2.370707e-01 6.062692e-01 -2.371763e-01 -2.379395e-01 2.724563e-01
3.298750e+11 -2.063801e-01 3.154531e-01 5.756687e-01 -2.805575e-01 6.061807e-01 -2.379222e-01 5.757141e-01 -2.805735e-01 -2.062413e-01 3.156713e-01 6.061483e-01 -2.380071e-01 6.060779e-01 -2.376304e-01 6.059896e-01 -2.377361e-01 -2.375129e-01 2.730475e-01
3.307500e+11 -2.058186e-01 3.160963e-01 5.752583e-01 -2.811739e-01 6.059008e-01 -2.384853e-01 5.753039e-01 -2.811901e-01 -2.056792e-01 3.163147e-01 6.058682e-01 -2.385704e-01 6.057982e-01 -2.381899e-01 6.057094e-01 -2.382956e-01 -2.370855e-01 2.736381e-01
3.316250e+11 -2.052562e-01 3.167386e-01 5.748471e-01 -2.817899e-01 6.056201e-01 -2.390481e-01 5.748928e-01 -2.818062e-01 -2.051161e-01 3.169573e-01 6.055875e-01 -2.391334e-01 6.055179e-01 -2.387490e-01 6.054288e-01 -2.388549e-01 -2.366572e-01 2.742282e-01
3.325000e+11 -2.046927e-01 3.173800e-01 5.744350e-01 -2.824054e-01 6.053388e-01 -2.396107e-01 5.744809e-01 -2.824219e-01 -2.045520e-01 3.175990e-01 6.053059e-01 -2.396962e-01 6.052371e-01 -2.393080e-01 6.051476e-01 -2.394140e-01 -2.362279e-01 2.748176e-01
3.333750e+11 -2.041281e-01 3.180205e-01 5.740221e-01 -2.830205e-01 6.050567e-01 -2.401731e-01 5.740682e-01 -2.830372e-01 -2.039869e-01 3.182398e-01 6.050237e-01 -2.402588e-01 6.049558e-01 -2.398668e-01 6.048658e-01 -2.399728e-01 -2.357978e-01 2.754065e-01
3.342500e+11 -2.035625e-01 3.186602e-01 5.736083e-01 -2.836351e-01 6.047738e-01 -2.407352e-01 5.736546e-01 -2.836520e-01 -2.034206e-01 3.188797e-01 6.047407e-01 -2.408210e-01 6.046738e-01 -2.404253e-01 6.045835e-01 -2.405314e-01 -2.353667e-01 2.759948e-01
3.351250e+11 -2.029957e-01 3.192989e-01 5.731936e-01 -2.842493e-01 6.044902e-01 -2.412971e-01 5.732400e-01 -2.842664e-01 -2.028532e-01 3.195187e-01 6.044569e-01 -2.413831e-01 6.043913e-01 -2.409837e-01 6.043006e-01 -2.410899e-01 -2.349346e-01 2.765825e-01
3.360000e+11 -2.024278e-01 3.199368e-01 5.727779e-01 -2.848631e-01 6.042057e-01 -2.418587e-01 5.728245e-01 -2.848804e-01 -2.022847e-01 3.201568e-01 6.041723e-01 -2.419448e-01 6.041082e-01 -2.415419e-01 6.040171e-01 -2.416481e-01 -2.345016e-01 2.771697e-01
3.368750e+11 -2.018586e-01 3.205737e-01 5.723612e-01 -2.854764e-01 6.039205e-01 -2.424200e-01 5.724080e-01 -2.854939e-01 -2.017149e-01 3.207940e-01 6.038869e-01 -2.425063e-01 6.038245e-01 -2.420999e-01 6.037329e-01 -2.422063e-01 -2.340675e-01 2.777563e-01
3.377500e+11 -2.012882e-01 3.212098e-01 5.719435e-01 -2.860893e-01 6.036344e-01 -2.429811e-01 5.719904e-01 -2.861070e-01 -2.011439e-01 3.214303e-01 6.036006e-01 -2.430676e-01 6.035401e-01 -2.426578e-01 6.034481e-01 -2.427642e-01 -2.336324e-01 2.783423e-01
3.386250e+11 -2.007166e-01 3.218449e-01 5.715247e-01 -2.867017e-01 6.033475e-01 -2.435419e-01 5.715717e-01 -2.867196e-01 -2.005717e-01 3.220657e-01 6.033136e-01 -2.436285e-01 6.032550e-01 -2.432155e-01 6.031626e-01 -2.433220e-01 -2.331962e-01 2.789278e-01
3.395000e+11 -2.001437e-01 3.224791e-01 5.711047e-01 -2.873137e-01 6.030597e-01 -2.441024e-01 5.711519e-01 -2.873318e-01 -1.999981e-01 3.227001e-01 6.030256e-01 -2.441892e-01 6.029692e-01 -2.437730e-01 6.028764e-01 -2.438796e-01 -2.327589e-01 2.795126e-01
3.403750e+11 -1.995694e-01 3.231123e-01 5.706836e-01 -2.879252e-01 6.027711e-01 -2.446626e-01 5.707310e-01 -2.879435e-01 -1.994232e-01 3.233336e-01 6.027369e-01 -2.447496e-01 6.026826e-01 -2.443305e-01 6.025895e-01 -2.444371e-01 -2.323204e-01 2.800969e-01
3.412500e+11 -1.989938e-01 3.237445e-01 5.702613e-01 -2.885361e-01 6.024816e-01 -2.452225e-01 5.703088e-01 -2.885546e-01 -1.988470e-01 3.239661e-01 6.024472e-01 -2.453097e-01 6.023953e-01 -2.448877e-01 6.023018e-01 -2.449945e-01 -2.318809e-01 2.806806e-01
3.421250e+11 -1.984168e-01 3.243757e-01 5.698377e-01 -2.891465e-01 6.021912e-01 -2.457821e-01 5.698854e-01 -2.891652e-01 -1.982694e-01 3.245975e-01 6.021566e-01 -2.458694e-01 6.021072e-01 -2.454449e-01 6.020133e-01 -2.455517e-01 -2.314402e-01 2.812636e-01
3.430000e+11 -1.978384e-01 3.250059e-01 5.694130e-01 -2.897563e-01 6.018999e-01 -2.463413e-01 5.694608e-01 -2.897752e-01 -1.976903e-01 3.252279e-01 6.018652e-01 -2.464289e-01 6.018184e-01 -2.460019e-01 6.017240e-01 -2.461088e-01 -2.309983e-01 2.818460e-01
3.438750e+11 -1.972586e-01 3.256350e-01 5.689869e-01 -2.903655e-01 6.016077e-01 -2.469003e-01 5.690349e-01 -2.903846e-01 -1.971099e-01 3.258572e-01 6.015728e-01 -2.469880e-01 6.015286e-01 -2.465587e-01 6.014339e-01 -2.466657e-01 -2.305552e-01 2.824278e-01
3.447500e+11 -1.966773e-01 3.262629e-01 5.685595e-01 -2.909741e-01 6.013146e-01 -2.474589e-01 5.686077e-01 -2.909934e-01 -1.965280e-01 3.264854e-01 6.012796e-01 -2.475467e-01 6.012381e-01 -2.471154e-01 6.011429e-01 -2.472224e-01 -2.301109e-01 2.830090e-01
3.456250e+11 -1.960946e-01 3.268898e-01 5.681308e-01 -2.915820e-01 6.010206e-01 -2.480171e-01 5.681792e-01 -2.916015e-01 -1.959447e-01 3.271125e-01 6.009854e-01 -2.481051e-01 6.009466e-01 -2.476718e-01 6.008510e-01 -2.477790e-01 -2.296653e-01 2.835894e-01
3.465000e+11 -1.955105e-01 3.275154e-01 5.677008e-01 -2.921891e-01 6.007257e-01 -2.485749e-01 5.677493e-01 -2.922088e-01 -1.953599e-01 3.277383e-01 6.006903e-01 -2.486631e-01 6.006543e-01 -2.482281e-01 6.005583e-01 -2.483354e-01 -2.292185e-01 2.841692e-01
3.473750e+11 -1.949249e-01 3.281398e-01 5.672694e-01 -2.927955e-01 6.004298e-01 -2.491324e-01 5.673180e-01 -2.928154e-01 -1.947737e-01 3.283630e-01 6.003943e-01 -2.492208e-01 6.003610e-01 -2.487842e-01 6.002646e-01 -2.488915e-01 -2.287704e-01 2.847483e-01
3.482500e+11 -1.943379e-01 3.287629e-01 5.668366e-01 -2.934010e-01 6.001330e-01 -2.496894e-01 5.668855e-01 -2.934211e-01 -1.941861e-01 3.289863e-01 6.000973e-01 -2.497780e-01 6.000668e-01 -2.493401e-01 5.999700e-01 -2.494475e-01 -2.283210e-01 2.853267e-01
3.491250e+11 -1.937494e-01 3.293847e-01 5.664025e-01 -2.940057e-01 5.998353e-01 -2.502461e-01 5.664515e-01 -2.940260e-01 -1.935970e-01 3.296084e-01 5.997995e-01 -2.503348e-01 5.997717e-01 -2.498958e-01 5.996745e-01 -2.500032e-01 -2.278703e-01 2.859043e-01
3.500000e+11 -1.931595e-01 3.300052e-01 5.659671e-01 -2.946095e-01 5.995367e-01 -2.508023e-01 5.660162e-01 -2.946300e-01 -1.930064e-01 3.302290e-01 5.995007e-01 -2.508911e-01 5.994756e-01 -2.504512e-01 5.993780e-01 -2.505587e-01 -2.274183e-01 2.864812e-01
0.000000e+00 -3.301265e-01 0.000000e+00 6.647256e-01 0.000000e+00 6.653307e-01 0.000000e+00 6.647255e-01 0.000000e+00 -3.301266e-01 0.000000e+00 6.653307e-01 0.000000e+00 6.653430e-01 0.000000e+00 6.653432e-01 0.000000e+00 -3.307224e-01 0.000000e+00
8.750000e+08 -3.301239e-01 1.021944e-03 6.647239e-01 -8.678446e-04 6.653295e-01 -7.076128e-04 6.647238e-01 -8.677915e-04 -3.301241e-01 1.022720e-03 6.653296e-01 -7.078553e-04 6.653419e-01 -7.085254e-04 6.653420e-01 -7.089105e-04 -3.307204e-01 8.609102e-04
1.750000e+09 -3.301163e-01 2.043663e-03 6.647189e-01 -1.735537e-03 6.653262e-01 -1.415130e-03 6.647188e-01 -1.735431e-03 -3.301164e-01 2.045215e-03 6.653263e-01 -1.415615e-03 6.653383e-01 -1.416940e-03 6.653385e-01 -1.417710e-03 -3.307146e-01 1.721657e-03
2.625000e+09 -3.301035e-01 3.064935e-03 6.647104e-01 -2.602928e-03 6.653207e-01 -2.122455e-03 6.647103e-01 -2.602769e-03 -3.301037e-01 3.067263e-03 6.653208e-01 -2.123183e-03 6.653325e-01 -2.125134e-03 6.653327e-01 -2.126289e-03 -3.307049e-01 2.582078e-03
3.500000e+09 -3.300858e-01 4.085540e-03 6.646987e-01 -3.469869e-03 6.653130e-01 -2.829496e-03 6.646986e-01 -3.469657e-03 -3.300859e-01 4.088644e-03 6.653131e-01 -2.830466e-03 6.653243e-01 -2.832999e-03 6.653245e-01 -2.834538e-03 -3.306914e-01 3.442014e-03
4.375000e+09 -3.300630e-01 5.105264e-03 6.646836e-01 -4.336215e-03 6.653032e-01 -3.536161e-03 6.646835e-01 -4.335950e-03 -3.300631e-01 5.109143e-03 6.653032e-01 -3.537373e-03 6.653139e-01 -3.540430e-03 6.653140e-01 -3.542354e-03 -3.306741e-01 4.301308e-03
5.250000e+09 -3.300354e-01 6.123901e-03 6.646654e-01 -5.201828e-03 6.652912e-01 -4.242360e-03 6.646653e-01 -5.201510e-03 -3.300355e-01 6.128554e-03 6.652912e-01 -4.243814e-03 6.653012e-01 -4.247324e-03 6.653013e-01 -4.249633e-03 -3.306531e-01 5.159808e-03
6.125000e+09 -3.300030e-01 7.141251e-03 6.646439e-01 -6.066573e-03 6.652771e-01 -4.948008e-03 6.646438e-01 -6.066203e-03 -3.300030e-01 7.146678e-03 6.652772e-01 -4.949704e-03 6.652863e-01 -4.953585e-03 6.652864e-01 -4.956278e-03 -3.306284e-01 6.017368e-03
7.000000e+09 -3.299658e-01 8.157125e-03 6.646194e-01 -6.930324e-03 6.652610e-01 -5.653023e-03 6.646193e-01 -6.929903e-03 -3.299658e-01 8.163324e-03 6.652610e-01 -5.654961e-03 6.652692e-01 -5.659121e-03 6.652694e-01 -5.662196e-03 -3.306001e-01 6.873847e-03
7.875000e+09 -3.299241e-01 9.171345e-03 6.645918e-01 -7.792963e-03 6.652429e-01 -6.357328e-03 6.645917e-01 -7.792489e-03 -3.299241e-01 9.178316e-03 6.652429e-01 -6.359509e-03 6.652501e-01 -6.363843e-03 6.652502e-01 -6.367302e-03 -3.305684e-01 7.729112e-03
8.750000e+09 -3.298780e-01 1.018375e-02 6.645613e-01 -8.654379e-03 6.652229e-01 -7.060852e-03 6.645613e-01 -8.653854e-03 -3.298779e-01 1.019149e-02 6.652229e-01 -7.063273e-03 6.652290e-01 -7.067673e-03 6.652291e-01 -7.071515e-03 -3.305331e-01 8.583039e-03
9.625000e+09 -3.298275e-01 1.119417e-02 6.645280e-01 -9.514471e-03 6.652009e-01 -7.763526e-03 6.645279e-01 -9.513895e-03 -3.298275e-01 1.120268e-02 6.652009e-01 -7.766189e-03 6.652059e-01 -7.770537e-03 6.652060e-01 -7.774761e-03 -3.304946e-01 9.435511e-03
1.050000e+10 -3.297730e-01 1.220249e-02 6.644919e-01 -1.037315e-02 6.651771e-01 -8.465291e-03 6.644919e-01 -1.037252e-02 -3.297728e-01 1.221177e-02 6.651772e-01 -8.468195e-03 6.651809e-01 -8.472369e-03 6.651810e-01 -8.476975e-03 -3.304528e-01 1.028642e-02
1.137500e+10 -3.297144e-01 1.320858e-02 6.644533e-01 -1.123033e-02 6.651516e-01 -9.166091e-03 6.644533e-01 -1.122966e-02 -3.297142e-01 1.321862e-02 6.651516e-01 -9.169236e-03 6.651542e-01 -9.173111e-03 6.651542e-01 -9.178098e-03 -3.304080e-01 1.113568e-02
1.225000e+10 -3.296520e-01 1.421232e-02 6.644121e-01 -1.208595e-02 6.651244e-01 -9.865878e-03 6.644121e-01 -1.208523e-02 -3.296518e-01 1.422313e-02 6.651244e-01 -9.869264e-03 6.651257e-01 -9.872712e-03 6.651258e-01 -9.878080e-03 -3.303602e-01 1.198319e-02
1.312500e+10 -3.295860e-01 1.521363e-02 6.643686e-01 -1.293995e-02 6.650956e-01 -1.056461e-02 6.643686e-01 -1.293917e-02 -3.295858e-01 1.522520e-02 6.650956e-01 -1.056824e-02 6.650957e-01 -1.057113e-02 6.650957e-01 -1.057688e-02 -3.303095e-01 1.282888e-02
1.400000e+10 -3.295165e-01 1.621243e-02 6.643228e-01 -1.379228e-02 6.650652e-01 -1.126225e-02 6.643228e-01 -1.379145e-02 -3.295162e-01 1.622476e-02 6.650652e-01 -1.126612e-02 6.650640e-01 -1.126833e-02 6.650640e-01 -1.127446e-02 -3.302560e-01 1.367268e-02
1.487500e+10 -3.294438e-01 1.720866e-02 6.642748e-01 -1.464290e-02 6.650333e-01 -1.195877e-02 6.642749e-01 -1.464203e-02 -3.294434e-01 1.722175e-02 6.650333e-01 -1.196288e-02 6.650310e-01 -1.196429e-02 6.650309e-01 -1.197080e-02 -3.302000e-01 1.451455e-02
1.575000e+10 -3.293679e-01 1.820227e-02 6.642248e-01 -1.549180e-02 6.650001e-01 -1.265415e-02 6.642249e-01 -1.549087e-02 -3.293675e-01 1.821612e-02 6.650000e-01 -1.265850e-02 6.649965e-01 -1.265900e-02 6.649964e-01 -1.266588e-02 -3.301415e-01 1.535443e-02
1.662500e+10 -3.292891e-01 1.919324e-02 6.641729e-01 -1.633895e-02 6.649655e-01 -1.334837e-02 6.641730e-01 -1.633798e-02 -3.292887e-01 1.920785e-02 6.649654e-01 -1.335296e-02 6.649608e-01 -1.335243e-02 6.649607e-01 -1.335969e-02 -3.300806e-01 1.619230e-02
1.750000e+10 -3.292076e-01 2.018155e-02 6.641192e-01 -1.718435e-02 6.649296e-01 -1.404143e-02 6.641193e-01 -1.718333e-02 -3.292071e-01 2.019692e-02 6.649296e-01 -1.404625e-02 6.649239e-01 -1.404459e-02 6.649238e-01 -1.405223e-02 -3.300175e-01 1.702814e-02
1.837500e+10 -3.291235e-01 2.116721e-02 6.640639e-01 -1.802801e-02 6.648926e-01 -1.473331e-02 6.640640e-01 -1.802695e-02 -3.291229e-01 2.118333e-02 6.648925e-01 -1.473837e-02 6.648859e-01 -1.473549e-02 6.648857e-01 -1.474350e-02 -3.299523e-01 1.786193e-02
1.925000e+10 -3.290370e-01 2.215023e-02 6.640069e-01 -1.886995e-02 6.648544e-01 -1.542403e-02 6.640071e-01 -1.886884e-02 -3.290363e-01 2.216710e-02 6.648544e-01 -1.542933e-02 6.648469e-01 -1.542513e-02 6.648466e-01 -1.543353e-02 -3.298851e-01 1.869367e-02
2.012500e+10 -3.289482e-01 2.313063e-02 6.639485e-01 -1.971019e-02 6.648152e-01 -1.611359e-02 6.639487e-01 -1.970903e-02 -3.289475e-01 2.314825e-02 6.648151e-01 -1.611913e-02 6.648068e-01 -1.611355e-02 6.648066e-01 -1.612232e-02 -3.298161e-01 1.952337e-02
2.100000e+10 -3.288574e-01 2.410846e-02 6.638888e-01 -2.054877e-02 6.647750e-01 -1.680201e-02 6.638890e-01 -2.054756e-02 -3.288566e-01 2.412683e-02 6.647750e-01 -1.680779e-02 6.647660e-01 -1.680076e-02 6.647657e-01 -1.680990e-02 -3.297454e-01 2.035105e-02
2.187500e+10 -3.287646e-01 2.508377e-02 6.638277e-01 -2.138572e-02 6.647339e-01 -1.748930e-02 6.638280e-01 -2.138447e-02 -3.287637e-01 2.510289e-02 6.647338e-01 -1.749532e-02 6.647243e-01 -1.748679e-02 6.647239e-01 -1.749630e-02 -3.296730e-01 2.117673e-02
2.275000e+10 -3.286700e-01 2.605663e-02 6.637655e-01 -2.222110e-02 6.646920e-01 -1.817549e-02 6.637658e-01 -2.221980e-02 -3.286690e-01 2.607649e-02 6.646919e-01 -1.818175e-02 6.646818e-01 -1.817168e-02 6.646815e-01 -1.818157e-02 -3.295991e-01 2.200045e-02
2.362500e+10 -3.285737e-01 2.702709e-02 6.637022e-01 -2.305496e-02 6.646492e-01 -1.886062e-02 6.637025e-01 -2.305361e-02 -3.285727e-01 2.704770e-02 6.646491e-01 -1.886711e-02 6.646387e-01 -1.885547e-02 6.646383e-01 -1.886574e-02 -3.295239e-01 2.282224e-02
2.450000e+10 -3.284759e-01 2.799525e-02 6.636379e-01 -2.388735e-02 6.646057e-01 -1.954470e-02 6.636382e-01 -2.388596e-02 -3.284748e-01 2.801660e-02 6.646056e-01 -1.955143e-02 6.645949e-01 -1.953822e-02 6.645945e-01 -1.954885e-02 -3.294473e-01 2.364216e-02
2.537500e+10 -3.283766e-01 2.896119e-02 6.635726e-01 -2.471835e-02 6.645614e-01 -2.022777e-02 6.635729e-01 -2.471692e-02 -3.283754e-01 2.898328e-02 6.645613e-01 -2.023475e-02 6.645505e-01 -2.021996e-02 6.645500e-01 -2.023096e-02 -3.293694e-01 2.446026e-02
2.625000e+10 -3.282760e-01 2.992500e-02 6.635064e-01 -2.554803e-02 6.645166e-01 -2.090989e-02 6.635068e-01 -2.554655e-02 -3.282747e-01 2.994784e-02 6.645164e-01 -2.091709e-02 6.645056e-01 -2.090074e-02 6.645051e-01 -2.091212e-02 -3.292905e-01 2.527660e-02
2.712500e+10 -3.281741e-01 3.088679e-02 6.634394e-01 -2.637645e-02 6.644710e-01 -2.159107e-02 6.634398e-01 -2.637493e-02 -3.281728e-01 3.091036e-02 6.644709e-01 -2.159852e-02 6.644602e-01 -2.158062e-02 6.644596e-01 -2.159238e-02 -3.292105e-01 2.609124e-02
2.800000e+10 -3.280710e-01 3.184664e-02 6.633715e-01 -2.720369e-02 6.644250e-01 -2.227138e-02 6.633720e-01 -2.720213e-02 -3.280697e-01 3.187095e-02 6.644248e-01 -2.227906e-02 6.644143e-01 -2.225966e-02 6.644137e-01 -2.227179e-02 -3.291295e-01 2.690424e-02
2.887500e+10 -3.279669e-01 3.280468e-02 6.633029e-01 -2.802982e-02 6.643783e-01 -2.295085e-02 6.633034e-01 -2.802822e-02 -3.279654e-01 3.282972e-02 6.643781e-01 -2.295877e-02 6.643679e-01 -2.293792e-02 6.643673e-01 -2.295041e-02 -3.290475e-01 2.771569e-02
2.975000e+10 -3.278616e-01 3.376099e-02 6.632336e-01 -2.885493e-02 6.643311e-01 -2.362953e-02 6.632341e-01 -2.885328e-02 -3.278601e-01 3.378678e-02 6.643309e-01 -2.363768e-02 6.643211e-01 -2.361543e-02 6.643204e-01 -2.362830e-02 -3.289647e-01 2.852564e-02
3.062500e+10 -3.277554e-01 3.471570e-02 6.631636e-01 -2.967907e-02 6.642834e-01 -2.430746e-02 6.631641e-01 -2.967738e-02 -3.277538e-01 3.474222e-02 6.642832e-01 -2.431586e-02 6.642739e-01 -2.429228e-02 6.642732e-01 -2.430551e-02 -3.288811e-01 2.933418e-02
3.150000e+10 -3.276482e-01 3.566890e-02 6.630928e-01 -3.050235e-02 6.642352e-01 -2.498470e-02 6.630933e-01 -3.050061e-02 -3.276465e-01 3.569615e-02 6.642351e-01 -2.499333e-02 6.642263e-01 -2.496850e-02 6.642255e-01 -2.498211e-02 -3.287967e-01 3.014138e-02
3.237500e+10 -3.275400e-01 3.662071e-02 6.630214e-01 -3.132481e-02 6.641866e-01 -2.566129e-02 6.630219e-01 -3.132304e-02 -3.275382e-01 3.664869e-02 6.641864e-01 -2.567016e-02 6.641783e-01 -2.564416e-02 6.641774e-01 -2.565813e-02 -3.287115e-01 3.094732e-02
3.325000e+10 -3.274310e-01 3.757122e-02 6.629493e-01 -3.214654e-02 6.641375e-01 -2.633727e-02 6.629499e-01 -3.214473e-02 -3.274291e-01 3.759994e-02 6.641373e-01 -2.634638e-02 6.641298e-01 -2.631930e-02 6.641290e-01 -2.633365e-02 -3.286256e-01 3.175207e-02
3.412500e+10 -3.273209e-01 3.852054e-02 6.628764e-01 -3.296761e-02 6.640879e-01 -2.701270e-02 6.628771e-01 -3.296576e-02 -3.273190e-01 3.854999e-02 6.640877e-01 -2.702205e-02 6.640810e-01 -2.699399e-02 6.640801e-01 -2.700871e-02 -3.285390e-01 3.255571e-02
3.500000e+10 -3.272100e-01 3.946876e-02 6.628029e-01 -3.378809e-02 6.640379e-01 -2.768762e-02 6.628036e-01 -3.378619e-02 -3.272079e-01 3.949895e-02 6.640376e-01 -2.769721e-02 6.640318e-01 -2.766827e-02 6.640308e-01 -2.768335e-02 -3.284517e-01 3.335831e-02
3.587500e+10 -3.270982e-01 4.041598e-02 6.627287e-01 -3.460803e-02 6.639874e-01 -2.836207e-02 6.627294e-01 -3.460609e-02 -3.270960e-01 4.044690e-02 6.639871e-01 -2.837190e-02 6.639821e-01 -2.834218e-02 6.639811e-01 -2.835764e-02 -3.283638e-01 3.415995e-02
3.675000e+10 -3.269853e-01 4.136229e-02 6.626537e-01 -3.542750e-02 6.639364e-01 -2.903610e-02 6.626544e-01 -3.542552e-02 -3.269831e-01 4.139394e-02 6.639362e-01 -2.904617e-02 6.639320e-01 -2.901578e-02 6.639309e-01 -2.903161e-02 -3.282752e-01 3.496069e-02
3.762500e+10 -3.268716e-01 4.230777e-02 6.625780e-01 -3.624655e-02 6.638850e-01 -2.970975e-02 6.625787e-01 -3.624453e-02 -3.268692e-01 4.234015e-02 6.638848e-01 -2.972005e-02 6.638814e-01 -2.968910e-02 6.638803e-01 -2.970530e-02 -3.281859e-01 3.576061e-02
3.850000e+10 -3.267568e-01 4.325250e-02 6.625014e-01 -3.706524e-02 6.638331e-01 -3.038305e-02 6.625023e-01 -3.706318e-02 -3.267544e-01 4.328562e-02 6.638329e-01 -3.039359e-02 6.638304e-01 -3.036219e-02 6.638292e-01 -3.037875e-02 -3.280959e-01 3.655977e-02
3.937500e+10 -3.266410e-01 4.419656e-02 6.624241e-01 -3.788362e-02 6.637807e-01 -3.105605e-02 6.624250e-01 -3.788152e-02 -3.266385e-01 4.423040e-02 6.637805e-01 -3.106683e-02 6.637788e-01 -3.103507e-02 6.637776e-01 -3.105200e-02 -3.280053e-01 3.735823e-02
4.025000e+10 -3.265241e-01 4.514001e-02 6.623459e-01 -3.870172e-02 6.637279e-01 -3.172877e-02 6.623468e-01 -3.869957e-02 -3.265215e-01 4.517458e-02 6.637276e-01 -3.173979e-02 6.637267e-01 -3.170778e-02 6.637254e-01 -3.172508e-02 -3.279139e-01 3.815606e-02
4.112500e+10 -3.264062e-01 4.608291e-02 6.622668e-01 -3.951958e-02 6.636745e-01 -3.240125e-02 6.622678e-01 -3.951740e-02 -3.264034e-01 4.611822e-02 6.636742e-01 -3.241251e-02 6.636741e-01 -3.238035e-02 6.636727e-01 -3.239802e-02 -3.278218e-01 3.895330e-02
4.200000e+10 -3.262871e-01 4.702532e-02 6.621868e-01 -4.033724e-02 6.636205e-01 -3.307352e-02 6.621878e-01 -4.033502e-02 -3.262842e-01 4.706136e-02 6.636202e-01 -3.308502e-02 6.636209e-01 -3.305280e-02 6.636195e-01 -3.307084e-02 -3.277290e-01 3.975002e-02
4.287500e+10 -3.261668e-01 4.796729e-02 6.621059e-01 -4.115473e-02 6.635660e-01 -3.374561e-02 6.621069e-01 -4.115247e-02 -3.261638e-01 4.800406e-02 6.635657e-01 -3.375735e-02 6.635671e-01 -3.372516e-02 6.635656e-01 -3.374357e-02 -3.276354e-01 4.054625e-02
4.375000e+10 -3.260452e-01 4.890885e-02 6.620239e-01 -4.197207e-02 6.635109e-01 -3.441754e-02 6.620250e-01 -4.196977e-02 -3.260422e-01 4.894635e-02 6.635106e-01 -3.442952e-02 6.635126e-01 -3.439744e-02 6.635111e-01 -3.441622e-02 -3.275410e-01 4.134205e-02
4.462500e+10 -3.259224e-01 4.985006e-02 6.619409e-01 -4.278929e-02 6.634553e-01 -3.508933e-02 6.619420e-01 -4.278695e-02 -3.259192e-01 4.988829e-02 6.634549e-01 -3.510155e-02 6.634575e-01 -3.506965e-02 6.634559e-01 -3.508880e-02 -3.274458e-01 4.213745e-02
4.550000e+10 -3.257982e-01 5.079093e-02 6.618568e-01 -4.360638e-02 6.633990e-01 -3.576100e-02 6.618580e-01 -4.360400e-02 -3.257949e-01 5.082989e-02 6.633986e-01 -3.577346e-02 6.634017e-01 -3.574182e-02 6.634000e-01 -3.576134e-02 -3.273497e-01 4.293249e-02
4.637500e+10 -3.256726e-01 5.173149e-02 6.617716e-01 -4.442338e-02 6.633420e-01 -3.643257e-02 6.617728e-01 -4.442096e-02 -3.256692e-01 5.177118e-02 6.633416e-01 -3.644528e-02 6.633451e-01 -3.641394e-02 6.633434e-01 -3.643384e-02 -3.272528e-01 4.372720e-02
4.725000e+10 -3.255456e-01 5.267176e-02 6.616853e-01 -4.524028e-02 6.632844e-01 -3.710406e-02 6.616865e-01 -4.523782e-02 -3.255421e-01 5.271218e-02 6.632840e-01 -3.711700e-02 6.632878e-01 -3.708603e-02 6.632860e-01 -3.710629e-02 -3.271549e-01 4.452162e-02
4.812500e+10 -3.254171e-01 5.361175e-02 6.615977e-01 -4.605708e-02 6.632261e-01 -3.777547e-02 6.615990e-01 -4.605459e-02 -3.254135e-01 5.365291e-02 6.632257e-01 -3.778865e-02 6.632298e-01 -3.775808e-02 6.632279e-01 -3.777872e-02 -3.270560e-01 4.531576e-02
4.900000e+10 -3.252871e-01 5.455148e-02 6.615090e-01 -4.687379e-02 6.631671e-01 -3.844681e-02 6.615103e-01 -4.687126e-02 -3.252833e-01 5.459336e-02 6.631667e-01 -3.846024e-02 6.631709e-01 -3.843010e-02 6.631689e-01 -3.845110e-02 -3.269562e-01 4.610965e-02
4.987500e+10 -3.251555e-01 5.549093e-02 6.614189e-01 -4.769040e-02 6.631074e-01 -3.911809e-02 6.614203e-01 -4.768783e-02 -3.251516e-01 5.553355e-02 6.631069e-01 -3.913176e-02 6.631112e-01 -3.910208e-02 6.631092e-01 -3.912345e-02 -3.268554e-01 4.690330e-02
5.075000e+10 -3.250222e-01 5.643012e-02 6.613276e-01 -4.850691e-02 6.630469e-01 -3.978932e-02 6.613291e-01 -4.850430e-02 -3.250182e-01 5.647347e-02 6.630464e-01 -3.980323e-02 6.630506e-01 -3.977401e-02 6.630485e-01 -3.979576e-02 -3.267535e-01 4.769672e-02
5.162500e+10 -3.248873e-01 5.736904e-02 6.612350e-01 -4.932329e-02 6.629856e-01 -4.046049e-02 6.612365e-01 -4.932065e-02 -3.248832e-01 5.741312e-02 6.629851e-01 -4.047465e-02 6.629892e-01 -4.044590e-02 6.629870e-01 -4.046801e-02 -3.266505e-01 4.848994e-02
5.250000e+10 -3.247507e-01 5.830767e-02 6.611410e-01 -5.013955e-02 6.629235e-01 -4.113161e-02 6.611425e-01 -5.013687e-02 -3.247464e-01 5.835249e-02 6.629231e-01 -4.114601e-02 6.629269e-01 -4.111772e-02 6.629246e-01 -4.114021e-02 -3.265464e-01 4.928294e-02
5.337500e+10 -3.246123e-01 5.924601e-02 6.610456e-01 -5.095567e-02 6.628606e-01 -4.180268e-02 6.610472e-01 -5.095295e-02 -3.246079e-01 5.929155e-02 6.628602e-01 -4.181732e-02 6.628636e-01 -4.178948e-02 6.628613e-01 -4.181233e-02 -3.264412e-01 5.007574e-02
5.425000e+10 -3.244722e-01 6.018403e-02 6.609489e-01 -5.177162e-02 6.627969e-01 -4.247369e-02 6.609505e-01 -5.176886e-02 -3.244676e-01 6.023031e-02 6.627964e-01 -4.248858e-02 6.627995e-01 -4.246115e-02 6.627971e-01 -4.248438e-02 -3.263348e-01 5.086834e-02
5.512500e+10 -3.243302e-01 6.112173e-02 6.608507e-01 -5.258739e-02 6.627323e-01 -4.314464e-02 6.608524e-01 -5.258459e-02 -3.243256e-01 6.116873e-02 6.627318e-01 -4.315977e-02 6.627344e-01 -4.313272e-02 6.627319e-01 -4.315632e-02 -3.262271e-01 5.166073e-02
5.600000e+10 -3.241864e-01 6.205907e-02 6.607511e-01 -5.340295e-02 6.626669e-01 -4.381552e-02 6.607529e-01 -5.340012e-02 -3.241816e-01 6.210680e-02 6.626664e-01 -4.383089e-02 6.626683e-01 -4.380419e-02 6.626658e-01 -4.382816e-02 -3.261183e-01 5.245291e-02
5.687500e+10 -3.240408e-01 6.299603e-02 6.606501e-01 -5.421830e-02 6.626006e-01 -4.448632e-02 6.606519e-01 -5.421543e-02 -3.240359e-01 6.304449e-02 6.626000e-01 -4.450194e-02 6.626013e-01 -4.447553e-02 6.625987e-01 -4.449986e-02 -3.260081e-01 5.324488e-02
5.775000e+10 -3.238933e-01 6.393259e-02 6.605476e-01 -5.503340e-02 6.625334e-01 -4.515704e-02 6.605495e-01 -5.503050e-02 -3.238882e-01 6.398179e-02 6.625328e-01 -4.517290e-02 6.625334e-01 -4.514672e-02 6.625306e-01 -4.517143e-02 -3.258967e-01 5.403661e-02
5.862500e+10 -3.237439e-01 6.486872e-02 6.604437e-01 -5.584823e-02 6.624653e-01 -4.582766e-02 6.604456e-01 -5.584529e-02 -3.237387e-01 6.491865e-02 6.624647e-01 -4.584377e-02 6.624644e-01 -4.581776e-02 6.624616e-01 -4.584284e-02 -3.257840e-01 5.482811e-02
5.950000e+10 -3.235926e-01 6.580440e-02 6.603383e-01 -5.666277e-02 6.623962e-01 -4.649818e-02 6.603403e-01 -5.665979e-02 -3.235872e-01 6.585506e-02 6.623956e-01 -4.651454e-02 6.623945e-01 -4.648862e-02 6.623916e-01 -4.651407e-02 -3.256700e-01 5.561936e-02
6.037500e+10 -3.234394e-01 6.673960e-02 6.602314e-01 -5.747699e-02 6.623263e-01 -4.716858e-02 6.602335e-01 -5.747398e-02 -3.234339e-01 6.679099e-02 6.623257e-01 -4.718518e-02 6.623236e-01 -4.715929e-02 6.623206e-01 -4.718512e-02 -3.255546e-01 5.641035e-02
6.125000e+10 -3.232843e-01 6.767429e-02 6.601231e-01 -5.829088e-02 6.622554e-01 -4.783885e-02 6.601252e-01 -5.828784e-02 -3.232786e-01 6.772641e-02 6.622548e-01 -4.785570e-02 6.622517e-01 -4.782976e-02 6.622487e-01 -4.785595e-02 -3.254379e-01 5.720105e-02
6.212500e+10 -3.231272e-01 6.860844e-02 6.600133e-01 -5.910440e-02 6.621836e-01 -4.850898e-02 6.600155e-01 -5.910133e-02 -3.231214e-01 6.866129e-02 6.621829e-01 -4.852608e-02 6.621789e-01 -4.850000e-02 6.621758e-01 -4.852657e-02 -3.253198e-01 5.799147e-02
6.300000e+10 -3.229683e-01 6.954203e-02 6.599020e-01 -5.991755e-02 6.621108e-01 -4.917896e-02 6.599043e-01 -5.991444e-02 -3.229623e-01 6.959560e-02 6.621101e-01 -4.919631e-02 6.621051e-01 -4.917001e-02 6.621019e-01 -4.919694e-02 -3.252003e-01 5.878156e-02
6.387500e+10 -3.228074e-01 7.047502e-02 6.597893e-01 -6.073030e-02 6.620371e-01 -4.984877e-02 6.597916e-01 -6.072716e-02 -3.228012e-01 7.052933e-02 6.620364e-01 -4.986636e-02 6.620304e-01 -4.983976e-02 6.620270e-01 -4.986707e-02 -3.250795e-01 5.957133e-02
6.475000e+10 -3.226446e-01 7.140741e-02 6.596752e-01 -6.154262e-02 6.619625e-01 -5.051840e-02 6.596776e-01 -6.153945e-02 -3.226383e-01 7.146244e-02 6.619618e-01 -5.053624e-02 6.619546e-01 -5.050925e-02 6.619512e-01 -5.053693e-02 -3.249572e-01 6.036075e-02
6.562500e+10 -3.224799e-01 7.233915e-02 6.595596e-01 -6.235450e-02 6.618869e-01 -5.118784e-02 6.595621e-01 -6.235130e-02 -3.224734e-01 7.239491e-02 6.618862e-01 -5.120593e-02 6.618780e-01 -5.117846e-02 6.618745e-01 -5.120651e-02 -3.248336e-01 6.114981e-02
6.650000e+10 -3.223133e-01 7.327023e-02 6.594426e-01 -6.316593e-02 6.618104e-01 -5.185707e-02 6.594451e-01 -6.316269e-02 -3.223067e-01 7.332672e-02 6.618096e-01 -5.187541e-02 6.618004e-01 -5.184738e-02 6.617968e-01 -5.187580e-02 -3.247085e-01 6.193848e-02
6.737500e+10 -3.221449e-01 7.420062e-02 6.593242e-01 -6.397688e-02 6.617329e-01 -5.252609e-02 6.593268e-01 -6.397361e-02 -3.221381e-01 7.425784e-02 6.617321e-01 -5.254468e-02 6.617219e-01 -5.251600e-02 6.617182e-01 -5.254479e-02 -3.245821e-01 6.272675e-02
6.825000e+10 -3.219745e-01 7.513031e-02 6.592045e-01 -6.478735e-02 6.616545e-01 -5.319488e-02 6.592071e-01 -6.478405e-02 -3.219676e-01 7.518825e-02 6.616537e-01 -5.321372e-02 6.616425e-01 -5.318430e-02 6.616386e-01 -5.321347e-02 -3.244543e-01 6.351460e-02
6.912500e+10 -3.218024e-01 7.605928e-02 6.590833e-01 -6.559731e-02 6.615752e-01 -5.386343e-02 6.590860e-01 -6.559398e-02 -3.217952e-01 7.611795e-02 6.615744e-01 -5.388251e-02 6.615621e-01 -5.385230e-02 6.615582e-01 -5.388183e-02 -3.243250e-01 6.430202e-02
7.000000e+10 -3.216284e-01 7.698750e-02 6.589608e-01 -6.640677e-02 6.614950e-01 -5.453173e-02 6.589636e-01 -6.640341e-02 -3.216210e-01 7.704690e-02 6.614941e-01 -5.455106e-02 6.614809e-01 -5.451996e-02 6.614769e-01 -5.454986e-02 -3.241944e-01 6.508898e-02
7.087500e+10 -3.214525e-01 7.791498e-02 6.588370e-01 -6.721571e-02 6.614138e-01 -5.519976e-02 6.588398e-01 -6.721231e-02 -3.214450e-01 7.797510e-02 6.614129e-01 -5.521935e-02 6.613988e-01 -5.518730e-02 6.613947e-01 -5.521757e-02 -3.240624e-01 6.587547e-02
7.175000e+10 -3.212749e-01 7.884169e-02 6.587118e-01 -6.802411e-02 6.613318e-01 -5.586753e-02 6.587147e-01 -6.802069e-02 -3.212673e-01 7.890254e-02 6.613308e-01 -5.588737e-02 6.613159e-01 -5.585429e-02 6.613116e-01 -5.588494e-02 -3.239290e-01 6.666148e-02
7.262500e+10 -3.210956e-01 7.976762e-02 6.585853e-01 -6.883199e-02 6.612488e-01 -5.653502e-02 6.585883e-01 -6.882854e-02 -3.210877e-01 7.982920e-02 6.612479e-01 -5.655510e-02 6.612321e-01 -5.652095e-02 6.612277e-01 -5.655197e-02 -3.237942e-01 6.744699e-02
7.350000e+10 -3.209144e-01 8.069277e-02 6.584576e-01 -6.963933e-02 6.611650e-01 -5.720222e-02 6.584606e-01 -6.963585e-02 -3.209064e-01 8.075507e-02 6.611640e-01 -5.722256e-02 6.611475e-01 -5.718727e-02 6.611430e-01 -5.721866e-02 -3.236581e-01 6.823199e-02
7.437500e+10 -3.207316e-01 8.161713e-02 6.583286e-01 -7.044612e-02 6.610802e-01 -5.786913e-02 6.583317e-01 -7.044261e-02 -3.207233e-01 8.168015e-02 6.610792e-01 -5.788971e-02 6.610620e-01 -5.785325e-02 6.610574e-01 -5.788500e-02 -3.235206e-01 6.901646e-02
7.525000e+10 -3.205470e-01 8.254070e-02 6.581983e-01 -7.125238e-02 6.609946e-01 -5.853574e-02 6.582015e-01 -7.124884e-02 -3.205386e-01 8.260444e-02 6.609936e-01 -5.855657e-02 6.609758e-01 -5.851889e-02 6.609711e-01 -5.855101e-02 -3.233818e-01 6.980040e-02
7.612500e+10 -3.203608e-01 8.346346e-02 6.580668e-01 -7.205809e-02 6.609082e-01 -5.920204e-02 6.580701e-01 -7.205453e-02 -3.203521e-01 8.352793e-02 6.609071e-01 -5.922313e-02 6.608887e-01 -5.918419e-02 6.608839e-01 -5.921668e-02 -3.232416e-01 7.058379e-02
7.700000e+10 -3.201728e-01 8.438543e-02 6.579341e-01 -7.286327e-02 6.608209e-01 -5.986804e-02 6.579375e-01 -7.285968e-02 -3.201640e-01 8.445062e-02 6.608198e-01 -5.988937e-02 6.608009e-01 -5.984915e-02 6.607960e-01 -5.988201e-02 -3.231001e-01 7.136663e-02
7.787500e+10 -3.199833e-01 8.530660e-02 6.578002e-01 -7.366790e-02 6.607327e-01 -6.053372e-02 6.578037e-01 -7.366429e-02 -3.199743e-01 8.537251e-02 6.607316e-01 -6.055530e-02 6.607123e-01 -6.051377e-02 6.607073e-01 -6.054700e-02 -3.229574e-01 7.214891e-02
7.875000e+10 -3.197921e-01 8.622698e-02 6.576651e-01 -7.447201e-02 6.606437e-01 -6.119908e-02 6.576687e-01 -7.446837e-02 -3.197829e-01 8.629361e-02 6.606426e-01 -6.122091e-02 6.606230e-01 -6.117807e-02 6.606178e-01 -6.121167e-02 -3.228133e-01 7.293062e-02
7.962500e+10 -3.195993e-01 8.714656e-02 6.575289e-01 -7.527559e-02 6.605540e-01 -6.186412e-02 6.575325e-01 -7.527192e-02 -3.195898e-01 8.721391e-02 6.605527e-01 -6.188621e-02 6.605329e-01 -6.184205e-02 6.605276e-01 -6.187602e-02 -3.226680e-01 7.371176e-02
8.050000e+10 -3.194049e-01 8.806536e-02 6.573915e-01 -7.607865e-02 6.604634e-01 -6.252885e-02 6.573952e-01 -7.607496e-02 -3.193952e-01 8.813343e-02 6.604621e-01 -6.255118e-02 6.604421e-01 -6.250571e-02 6.604367e-01 -6.254004e-02 -3.225214e-01 7.449232e-02
8.137500e+10 -3.192089e-01 8.898338e-02 6.572530e-01 -7.688121e-02 6.603720e-01 -6.319326e-02 6.572567e-01 -7.687749e-02 -3.191991e-01 8.905217e-02 6.603707e-01 -6.321584e-02 6.603505e-01 -6.316905e-02 6.603450e-01 -6.320376e-02 -3.223736e-01 7.527229e-02
8.225000e+10 -3.190113e-01 8.990063e-02 6.571133e-01 -7.768325e-02 6.602798e-01 -6.385734e-02 6.571172e-01 -7.767951e-02 -3.190013e-01 8.997014e-02 6.602785e-01 -6.388018e-02 6.602583e-01 -6.383210e-02 6.602526e-01 -6.386717e-02 -3.222245e-01 7.605168e-02
8.312500e+10 -3.188122e-01 9.081712e-02 6.569726e-01 -7.848480e-02 6.601868e-01 -6.452111e-02 6.569765e-01 -7.848104e-02 -3.188020e-01 9.088734e-02 6.601855e-01 -6.454420e-02 6.601653e-01 -6.449484e-02 6.601595e-01 -6.453028e-02 -3.220742e-01 7.683049e-02
8.400000e+10 -3.186116e-01 9.173285e-02 6.568307e-01 -7.928587e-02 6.600931e-01 -6.518457e-02 6.568347e-01 -7.928208e-02 -3.186012e-01 9.180379e-02 6.600917e-01 -6.520790e-02 6.600716e-01 -6.515730e-02 6.600657e-01 -6.519311e-02 -3.219227e-01 7.760872e-02
8.487500e+10 -3.184095e-01 9.264784e-02 6.566877e-01 -8.008646e-02 6.599986e-01 -6.584771e-02 6.566918e-01 -8.008265e-02 -3.183988e-01 9.271950e-02 6.599972e-01 -6.587130e-02 6.599772e-01 -6.581949e-02 6.599712e-01 -6.585566e-02 -3.217700e-01 7.838636e-02
8.575000e+10 -3.182058e-01 9.356210e-02 6.565437e-01 -8.088659e-02 6.599034e-01 -6.651054e-02 6.565478e-01 -8.088275e-02 -3.181949e-01 9.363447e-02 6.599020e-01 -6.653438e-02 6.598822e-01 -6.648140e-02 6.598760e-01 -6.651794e-02 -3.216161e-01 7.916342e-02
8.662500e+10 -3.180006e-01 9.447563e-02 6.563985e-01 -8.168626e-02 6.598075e-01 -6.717306e-02 6.564027e-01 -8.168240e-02 -3.179895e-01 9.454872e-02 6.598060e-01 -6.719715e-02 6.597864e-01 -6.714305e-02 6.597802e-01 -6.717996e-02 -3.214611e-01 7.993990e-02
8.750000e+10 -3.177939e-01 9.538846e-02 6.562523e-01 -8.248549e-02 6.597108e-01 -6.783528e-02 6.562566e-01 -8.248161e-02 -3.177826e-01 9.546226e-02 6.597092e-01 -6.785962e-02 6.596900e-01 -6.780444e-02 6.596836e-01 -6.784172e-02 -3.213049e-01 8.071581e-02
8.837500e+10 -3.175858e-01 9.630059e-02 6.561050e-01 -8.328429e-02 6.596134e-01 -6.849721e-02 6.561094e-01 -8.328038e-02 -3.175742e-01 9.637511e-02 6.596118e-01 -6.852180e-02 6.595929e-01 -6.846560e-02 6.595863e-01 -6.850324e-02 -3.211475e-01 8.149114e-02
8.925000e+10 -3.173761e-01 9.721203e-02 6.559566e-01 -8.408266e-02 6.595152e-01 -6.915884e-02 6.559611e-01 -8.407873e-02 -3.173643e-01 9.728726e-02 6.595136e-01 -6.918368e-02 6.594951e-01 -6.912651e-02 6.594884e-01 -6.916452e-02 -3.209890e-01 8.226591e-02
9.012500e+10 -3.171649e-01 9.812280e-02 6.558071e-01 -8.488061e-02 6.594164e-01 -6.982018e-02 6.558117e-01 -8.487666e-02 -3.171529e-01 9.819874e-02 6.594147e-01 -6.984528e-02 6.593966e-01 -6.978720e-02 6.593898e-01 -6.982557e-02 -3.208294e-01 8.304013e-02
9.100000e+10 -3.169523e-01 9.903290e-02 6.556566e-01 -8.567816e-02 6.593168e-01 -7.048125e-02 6.556612e-01 -8.567420e-02 -3.169401e-01 9.910955e-02 6.593151e-01 -7.050659e-02 6.592974e-01 -7.044767e-02 6.592905e-01 -7.048641e-02 -3.206687e-01 8.381378e-02
9.187500e+10 -3.167382e-01 9.994234e-02 6.555050e-01 -8.647532e-02 6.592166e-01 -7.114203e-02 6.555097e-01 -8.647133e-02 -3.167257e-01 1.000197e-01 6.592148e-01 -7.116763e-02 6.591976e-01 -7.110792e-02 6.591905e-01 -7.114703e-02 -3.205068e-01 8.458689e-02
9.275000e+10 -3.165226e-01 1.008511e-01 6.553523e-01 -8.727209e-02 6.591156e-01 -7.180255e-02 6.553571e-01 -8.726808e-02 -3.165099e-01 1.009292e-01 6.591139e-01 -7.182839e-02 6.590970e-01 -7.176797e-02 6.590898e-01 -7.180744e-02 -3.203438e-01 8.535946e-02
9.362500e+10 -3.163054e-01 1.017593e-01 6.551985e-01 -8.806848e-02 6.590140e-01 -7.246280e-02 6.552034e-01 -8.806445e-02 -3.162925e-01 1.018381e-01 6.590122e-01 -7.248890e-02 6.589958e-01 -7.242782e-02 6.589884e-01 -7.246766e-02 -3.201798e-01 8.613149e-02
9.450000e+10 -3.160868e-01 1.026669e-01 6.550436e-01 -8.886449e-02 6.589117e-01 -7.312279e-02 6.550486e-01 -8.886044e-02 -3.160737e-01 1.027464e-01 6.589098e-01 -7.314914e-02 6.588939e-01 -7.308748e-02 6.588863e-01 -7.312768e-02 -3.200146e-01 8.690300e-02
9.537500e+10 -3.158667e-01 1.035738e-01 6.548876e-01 -8.966014e-02 6.588086e-01 -7.378254e-02 6.548927e-01 -8.965607e-02 -3.158533e-01 1.036540e-01 6.588067e-01 -7.380914e-02 6.587912e-01 -7.374694e-02 6.587836e-01 -7.378751e-02 -3.198484e-01 8.767399e-02
9.625000e+10 -3.156451e-01 1.044801e-01 6.547306e-01 -9.045542e-02 6.587049e-01 -7.444203e-02 6.547358e-01 -9.045134e-02 -3.156315e-01 1.045610e-01 6.587030e-01 -7.446888e-02 6.586879e-01 -7.440623e-02 6.586801e-01 -7.444715e-02 -3.196810e-01 8.844446e-02
9.712500e+10 -3.154220e-01 1.053858e-01 6.545724e-01 -9.125035e-02 6.586005e-01 -7.510129e-02 6.545777e-01 -9.124625e-02 -3.154081e-01 1.054674e-01 6.585985e-01 -7.512839e-02 6.585838e-01 -7.506533e-02 6.585759e-01 -7.510662e-02 -3.195126e-01 8.921443e-02
9.800000e+10 -3.151974e-01 1.062909e-01 6.544131e-01 -9.204493e-02 6.584954e-01 -7.576031e-02 6.544185e-01 -9.204081e-02 -3.151832e-01 1.063732e-01 6.584934e-01 -7.578766e-02 6.584791e-01 -7.572426e-02 6.584709e-01 -7.576591e-02 -3.193431e-01 8.998391e-02
9.887500e+10 -3.149712e-01 1.071954e-01 6.542527e-01 -9.283915e-02 6.583897e-01 -7.641910e-02 6.542582e-01 -9.283501e-02 -3.149568e-01 1.072784e-01 6.583875e-01 -7.644670e-02 6.583736e-01 -7.638301e-02 6.583653e-01 -7.642502e-02 -3.191725e-01 9.075289e-02
9.975000e+10 -3.147435e-01 1.080993e-01 6.540911e-01 -9.363302e-02 6.582832e-01 -7.707767e-02 6.540967e-01 -9.362887e-02 -3.147288e-01 1.081830e-01 6.582810e-01 -7.710552e-02 6.582674e-01 -7.704158e-02 6.582589e-01 -7.708396e-02 -3.190008e-01 9.152138e-02
1.006250e+11 -3.145142e-01 1.090026e-01 6.539285e-01 -9.442654e-02 6.581760e-01 -7.773601e-02 6.539341e-01 -9.442237e-02 -3.144993e-01 1.090870e-01 6.581738e-01 -7.776412e-02 6.581604e-01 -7.769999e-02 6.581518e-01 -7.774272e-02 -3.188280e-01 9.228940e-02
1.015000e+11 -3.142834e-01 1.099053e-01 6.537646e-01 -9.521971e-02 6.580682e-01 -7.839414e-02 6.537704e-01 -9.521553e-02 -3.142683e-01 1.099905e-01 6.580659e-01 -7.842250e-02 6.580527e-01 -7.835822e-02 6.580439e-01 -7.840132e-02 -3.186541e-01 9.305694e-02
1.023750e+11 -3.140511e-01 1.108074e-01 6.535997e-01 -9.601253e-02 6.579596e-01 -7.905206e-02 6.536055e-01 -9.600833e-02 -3.140357e-01 1.108933e-01 6.579573e-01 -7.908067e-02 6.579442e-01 -7.901627e-02 6.579353e-01 -7.905973e-02 -3.184792e-01 9.382402e-02
1.032500e+11 -3.138172e-01 1.117090e-01 6.534335e-01 -9.680499e-02 6.578504e-01 -7.970977e-02 6.534395e-01 -9.680078e-02 -3.138015e-01 1.117955e-01 6.578480e-01 -7.973863e-02 6.578350e-01 -7.967415e-02 6.578260e-01 -7.971797e-02 -3.183032e-01 9.459064e-02
1.041250e+11 -3.135817e-01 1.126099e-01 6.532662e-01 -9.759710e-02 6.577404e-01 -8.036728e-02 6.532723e-01 -9.759287e-02 -3.135657e-01 1.126972e-01 6.577380e-01 -8.039639e-02 6.577251e-01 -8.033186e-02 6.577158e-01 -8.037604e-02 -3.181260e-01 9.535679e-02
1.050000e+11 -3.133446e-01 1.135102e-01 6.530977e-01 -9.838884e-02 6.576297e-01 -8.102458e-02 6.531039e-01 -9.838460e-02 -3.133284e-01 1.135982e-01 6.576272e-01 -8.105394e-02 6.576143e-01 -8.098938e-02 6.576049e-01 -8.103392e-02 -3.179478e-01 9.612250e-02
1.058750e+11 -3.131059e-01 1.144099e-01 6.529281e-01 -9.918021e-02 6.575183e-01 -8.168169e-02 6.529343e-01 -9.917596e-02 -3.130894e-01 1.144986e-01 6.575158e-01 -8.171130e-02 6.575028e-01 -8.164672e-02 6.574932e-01 -8.169162e-02 -3.177684e-01 9.688775e-02
1.067500e+11 -3.128656e-01 1.153090e-01 6.527572e-01 -9.997122e-02 6.574062e-01 -8.233859e-02 6.527636e-01 -9.996695e-02 -3.128489e-01 1.153984e-01 6.574037e-01 -8.236845e-02 6.573905e-01 -8.230387e-02 6.573808e-01 -8.234913e-02 -3.175880e-01 9.765256e-02
1.076250e+11 -3.126237e-01 1.162075e-01 6.525852e-01 -1.007618e-01 6.572934e-01 -8.299530e-02 6.525916e-01 -1.007576e-01 -3.126067e-01 1.162976e-01 6.572908e-01 -8.302541e-02 6.572774e-01 -8.296083e-02 6.572675e-01 -8.300644e-02 -3.174064e-01 9.841692e-02
1.085000e+11 -3.123802e-01 1.171054e-01 6.524119e-01 -1.015521e-01 6.571799e-01 -8.365181e-02 6.524185e-01 -1.015478e-01 -3.123629e-01 1.171961e-01 6.571772e-01 -8.368217e-02 6.571635e-01 -8.361759e-02 6.571535e-01 -8.366356e-02 -3.172238e-01 9.918084e-02
1.093750e+11 -3.121351e-01 1.180026e-01 6.522375e-01 -1.023419e-01 6.570656e-01 -8.430812e-02 6.522441e-01 -1.023376e-01 -3.121175e-01 1.180940e-01 6.570629e-01 -8.433873e-02 6.570489e-01 -8.427414e-02 6.570386e-01 -8.432047e-02 -3.170400e-01 9.994431e-02
1.102500e+11 -3.118883e-01 1.188992e-01 6.520618e-01 -1.031313e-01 6.569506e-01 -8.496424e-02 6.520686e-01 -1.031270e-01 -3.118705e-01 1.189913e-01 6.569478e-01 -8.499510e-02 6.569334e-01 -8.493048e-02 6.569230e-01 -8.497717e-02 -3.168550e-01 1.007073e-01
1.111250e+11 -3.116399e-01 1.197951e-01 6.518849e-01 -1.039204e-01 6.568349e-01 -8.562015e-02 6.518918e-01 -1.039160e-01 -3.116218e-01 1.198879e-01 6.568320e-01 -8.565127e-02 6.568171e-01 -8.558661e-02 6.568065e-01 -8.563365e-02 -3.166690e-01 1.014699e-01
1.120000e+11 -3.113899e-01 1.206903e-01 6.517068e-01 -1.047090e-01 6.567184e-01 -8.627587e-02 6.517138e-01 -1.047046e-01 -3.113715e-01 1.207838e-01 6.567154e-01 -8.630723e-02 6.567000e-01 -8.624251e-02 6.566893e-01 -8.628991e-02 -3.164818e-01 1.022321e-01
1.128750e+11 -3.111382e-01 1.215849e-01 6.515275e-01 -1.054971e-01 6.566011e-01 -8.693139e-02 6.515345e-01 -1.054928e-01 -3.111195e-01 1.216791e-01 6.565981e-01 -8.696300e-02 6.565821e-01 -8.689818e-02 6.565712e-01 -8.694593e-02 -3.162934e-01 1.029938e-01
1.137500e+11 -3.108849e-01 1.224787e-01 6.513469e-01 -1.062848e-01 6.564831e-01 -8.758670e-02 6.513541e-01 -1.062805e-01 -3.108659e-01 1.225737e-01 6.564801e-01 -8.761856e-02 6.564634e-01 -8.755361e-02 6.564523e-01 -8.760171e-02 -3.161039e-01 1.037550e-01
1.146250e+11 -3.106299e-01 1.233719e-01 6.511652e-01 -1.070721e-01 6.563644e-01 -8.824181e-02 6.511724e-01 -1.070677e-01 -3.106107e-01 1.234675e-01 6.563613e-01 -8.827392e-02 6.563439e-01 -8.820879e-02 6.563326e-01 -8.825725e-02 -3.159132e-01 1.045158e-01
1.155000e+11 -3.103733e-01 1.242644e-01 6.509822e-01 -1.078589e-01 6.562448e-01 -8.889670e-02 6.509895e-01 -1.078545e-01 -3.103538e-01 1.243607e-01 6.562417e-01 -8.892906e-02 6.562236e-01 -8.886372e-02 6.562121e-01 -8.891253e-02 -3.157214e-01 1.052762e-01
1.163750e+11 -3.101151e-01 1.251561e-01 6.507980e-01 -1.086452e-01 6.561245e-01 -8.955138e-02 6.508054e-01 -1.086409e-01 -3.100952e-01 1.252531e-01 6.561213e-01 -8.958399e-02 6.561025e-01 -8.951839e-02 6.560908e-01 -8.956755e-02 -3.155284e-01 1.060360e-01
1.172500e+11 -3.098552e-01 1.260471e-01 6.506125e-01 -1.094311e-01 6.560035e-01 -9.020585e-02 6.506201e-01 -1.094267e-01 -3.098350e-01 1.261448e-01 6.560002e-01 -9.023871e-02 6.559805e-01 -9.017279e-02 6.559687e-01 -9.022230e-02 -3.153343e-01 1.067955e-01
1.181250e+11 -3.095936e-01 1.269374e-01 6.504258e-01 -1.102164e-01 6.558816e-01 -9.086009e-02 6.504335e-01 -1.102120e-01 -3.095732e-01 1.270357e-01 6.558783e-01 -9.089320e-02 6.558577e-01 -9.082691e-02 6.558457e-01 -9.087677e-02 -3.151389e-01 1.075544e-01
1.190000e+11 -3.093304e-01 1.278268e-01 6.502380e-01 -1.110013e-01 6.557590e-01 -9.151410e-02 6.502457e-01 -1.109969e-01 -3.093097e-01 1.279259e-01 6.557556e-01 -9.154746e-02 6.557342e-01 -9.148074e-02 6.557220e-01 -9.153095e-02 -3.149424e-01 1.083129e-01
1.198750e+11 -3.090656e-01 1.287155e-01 6.500489e-01 -1.117856e-01 6.556356e-01 -9.216789e-02 6.500568e-01 -1.117812e-01 -3.090446e-01 1.288153e-01 6.556322e-01 -9.220149e-02 6.556098e-01 -9.213428e-02 6.555974e-01 -9.218485e-02 -3.147447e-01 1.090709e-01
1.207500e+11 -3.087992e-01 1.296035e-01 6.498585e-01 -1.125694e-01 6.555115e-01 -9.282143e-02 6.498666e-01 -1.125650e-01 -3.087778e-01 1.297039e-01 6.555079e-01 -9.285529e-02 6.554846e-01 -9.278752e-02 6.554720e-01 -9.283844e-02 -3.145458e-01 1.098284e-01
1.216250e+11 -3.085311e-01 1.304906e-01 6.496670e-01 -1.133527e-01 6.553865e-01 -9.347473e-02 6.496751e-01 -1.133483e-01 -3.085094e-01 1.305917e-01 6.553829e-01 -9.350884e-02 6.553586e-01 -9.344046e-02 6.553459e-01 -9.349172e-02 -3.143457e-01 1.105854e-01
1.225000e+11 -3.082614e-01 1.313769e-01 6.494743e-01 -1.141354e-01 6.552607e-01 -9.412779e-02 6.494825e-01 -1.141310e-01 -3.082394e-01 1.314787e-01 6.552571e-01 -9.416214e-02 6.552319e-01 -9.409309e-02 6.552189e-01 -9.414469e-02 -3.141445e-01 1.113420e-01
1.233750e+11 -3.079900e-01 1.322624e-01 6.492804e-01 -1.149176e-01 6.551342e-01 -9.478059e-02 6.492887e-01 -1.149132e-01 -3.079678e-01 1.323649e-01 6.551305e-01 -9.481519e-02 6.551043e-01 -9.474539e-02 6.550911e-01 -9.479735e-02 -3.139420e-01 1.120980e-01
1.242500e+11 -3.077171e-01 1.331471e-01 6.490853e-01 -1.156992e-01 6.550069e-01 -9.543313e-02 6.490937e-01 -1.156948e-01 -3.076945e-01 1.332502e-01 6.550031e-01 -9.546798e-02 6.549760e-01 -9.539737e-02 6.549626e-01 -9.544967e-02 -3.137383e-01 1.128535e-01
1.251250e+11 -3.074426e-01 1.340309e-01 6.488890e-01 -1.164803e-01 6.548787e-01 -9.608540e-02 6.488976e-01 -1.164758e-01 -3.074197e-01 1.341347e-01 6.548749e-01 -9.612050e-02 6.548468e-01 -9.604903e-02 6.548332e-01 -9.610167e-02 -3.135335e-01 1.136084e-01
1.260000e+11 -3.071665e-01 1.349139e-01 6.486916e-01 -1.172608e-01 6.547498e-01 -9.673740e-02 6.487002e-01 -1.172563e-01 -3.071432e-01 1.350184e-01 6.547459e-01 -9.677275e-02 6.547169e-01 -9.670035e-02 6.547031e-01 -9.675334e-02 -3.133274e-01 1.143629e-01
1.268750e+11 -3.068887e-01 1.357961e-01 6.484929e-01 -1.180407e-01 6.546201e-01 -9.738913e-02 6.485017e-01 -1.180362e-01 -3.068652e-01 1.359012e-01 6.546161e-01 -9.742472e-02 6.545862e-01 -9.735133e-02 6.545723e-01 -9.740466e-02 -3.131202e-01 1.151168e-01
1.277500e+11 -3.066095e-01 1.366773e-01 6.482932e-01 -1.188200e-01 6.544896e-01 -9.804057e-02 6.483021e-01 -1.188155e-01 -3.065856e-01 1.367832e-01 6.544855e-01 -9.807641e-02 6.544548e-01 -9.800197e-02 6.544406e-01 -9.805564e-02 -3.129117e-01 1.158702e-01
1.286250e+11 -3.063286e-01 1.375577e-01 6.480922e-01 -1.195987e-01 6.543583e-01 -9.869172e-02 6.481012e-01 -1.195943e-01 -3.063044e-01 1.376642e-01 6.543542e-01 -9.872780e-02 6.543226e-01 -9.865226e-02 6.543082e-01 -9.870628e-02 -3.127021e-01 1.166230e-01
1.295000e+11 -3.060462e-01 1.384373e-01 6.478902e-01 -1.203768e-01 6.542263e-01 -9.934257e-02 6.478993e-01 -1.203724e-01 -3.060217e-01 1.385444e-01 6.542220e-01 -9.937890e-02 6.541896e-01 -9.930221e-02 6.541750e-01 -9.935657e-02 -3.124912e-01 1.173752e-01
1.303750e+11 -3.057622e-01 1.393159e-01 6.476870e-01 -1.211544e-01 6.540934e-01 -9.999312e-02 6.476962e-01 -1.211499e-01 -3.057374e-01 1.394238e-01 6.540891e-01 -1.000297e-01 6.540559e-01 -9.995181e-02 6.540411e-01 -1.000065e-01 -3.122792e-01 1.181269e-01
1.312500e+11 -3.054768e-01 1.401937e-01 6.474826e-01 -1.219313e-01 6.539598e-01 -1.006434e-01 6.474920e-01 -1.219269e-01 -3.054516e-01 1.403022e-01 6.539554e-01 -1.006802e-01 6.539214e-01 -1.006011e-01 6.539064e-01 -1.006561e-01 -3.120660e-01 1.188780e-01
1.321250e+11 -3.051897e-01 1.410706e-01 6.472772e-01 -1.227077e-01 6.538253e-01 -1.012933e-01 6.472866e-01 -1.227032e-01 -3.051642e-01 1.411797e-01 6.538209e-01 -1.013304e-01 6.537862e-01 -1.012500e-01 6.537710e-01 -1.013053e-01 -3.118516e-01 1.196285e-01
1.330000e+11 -3.049012e-01 1.419466e-01 6.470706e-01 -1.234834e-01 6.536901e-01 -1.019429e-01 6.470802e-01 -1.234790e-01 -3.048754e-01 1.420564e-01 6.536856e-01 -1.019802e-01 6.536503e-01 -1.018985e-01 6.536349e-01 -1.019542e-01 -3.116360e-01 1.203784e-01
1.338750e+11 -3.046111e-01 1.428216e-01 6.468629e-01 -1.242585e-01 6.535541e-01 -1.025922e-01 6.468726e-01 -1.242541e-01 -3.045850e-01 1.429322e-01 6.535495e-01 -1.026298e-01 6.535137e-01 -1.025467e-01 6.534981e-01 -1.026027e-01 -3.114192e-01 1.211278e-01
1.347500e+11 -3.043196e-01 1.436959e-01 6.466542e-01 -1.250331e-01 6.534174e-01 -1.032412e-01 6.466640e-01 -1.250286e-01 -3.042931e-01 1.438070e-01 6.534127e-01 -1.032790e-01 6.533763e-01 -1.031945e-01 6.533605e-01 -1.032509e-01 -3.112013e-01 1.218765e-01
1.356250e+11 -3.040266e-01 1.445692e-01 6.464443e-01 -1.258070e-01 6.532799e-01 -1.038898e-01 6.464543e-01 -1.258026e-01 -3.039997e-01 1.446810e-01 6.532751e-01 -1.039279e-01 6.532382e-01 -1.038420e-01 6.532222e-01 -1.038987e-01 -3.109821e-01 1.226246e-01
1.365000e+11 -3.037321e-01 1.454416e-01 6.462334e-01 -1.265803e-01 6.531416e-01 -1.045381e-01 6.462434e-01 -1.265759e-01 -3.037049e-01 1.455541e-01 6.531368e-01 -1.045764e-01 6.530995e-01 -1.044892e-01 6.530832e-01 -1.045462e-01 -3.107619e-01 1.233721e-01
1.373750e+11 -3.034361e-01 1.463131e-01 6.460214e-01 -1.273530e-01 6.530025e-01 -1.051861e-01 6.460316e-01 -1.273486e-01 -3.034085e-01 1.464263e-01 6.529976e-01 -1.052246e-01 6.529600e-01 -1.051359e-01 6.529435e-01 -1.051933e-01 -3.105404e-01 1.241190e-01
1.382500e+11 -3.031386e-01 1.471837e-01 6.458083e-01 -1.281252e-01 6.528627e-01 -1.058337e-01 6.458186e-01 -1.281208e-01 -3.031107e-01 1.472975e-01 6.528577e-01 -1.058725e-01 6.528198e-01 -1.057824e-01 6.528031e-01 -1.058401e-01 -3.103178e-01 1.248653e-01
1.391250e+11 -3.028397e-01 1.480535e-01 6.455942e-01 -1.288967e-01 6.527222e-01 -1.064810e-01 6.456046e-01 -1.288923e-01 -3.028115e-01 1.481679e-01 6.527171e-01 -1.065200e-01 6.526789e-01 -1.064285e-01 6.526620e-01 -1.064866e-01 -3.100941e-01 1.256109e-01
1.400000e+11 -3.025394e-01 1.489223e-01 6.453790e-01 -1.296676e-01 6.525809e-01 -1.071279e-01 6.453895e-01 -1.296633e-01 -3.025108e-01 1.490374e-01 6.525757e-01 -1.071672e-01 6.525373e-01 -1.070743e-01 6.525202e-01 -1.071327e-01 -3.098692e-01 1.263559e-01
1.408750e+11 -3.022376e-01 1.497903e-01 6.451627e-01 -1.304380e-01 6.524388e-01 -1.077745e-01 6.451734e-01 -1.304336e-01 -3.022086e-01 1.499060e-01 6.524336e-01 -1.078140e-01 6.523951e-01 -1.077197e-01 6.523777e-01 -1.077784e-01 -3.096432e-01 1.271003e-01
1.417500e+11 -3.019343e-01 1.506573e-01 6.449454e-01 -1.312078e-01 6.522960e-01 -1.084207e-01 6.449562e-01 -1.312034e-01 -3.019051e-01 1.507738e-01 6.522907e-01 -1.084605e-01 6.522521e-01 -1.083648e-01 6.522345e-01 -1.084238e-01 -3.094161e-01 1.278440e-01
1.426250e+11 -3.016297e-01 1.515235e-01 6.447271e-01 -1.319769e-01 6.521525e-01 -1.090666e-01 6.447380e-01 -1.319726e-01 -3.016000e-01 1.516406e-01 6.521471e-01 -1.091066e-01 6.521085e-01 -1.090096e-01 6.520907e-01 -1.090689e-01 -3.091878e-01 1.285870e-01
1.435000e+11 -3.013236e-01 1.523889e-01 6.445077e-01 -1.327455e-01 6.520082e-01 -1.097121e-01 6.445188e-01 -1.327412e-01 -3.012936e-01 1.525066e-01 6.520028e-01 -1.097524e-01 6.519642e-01 -1.096540e-01 6.519461e-01 -1.097137e-01 -3.089584e-01 1.293295e-01
1.443750e+11 -3.010161e-01 1.532533e-01 6.442873e-01 -1.335136e-01 6.518633e-01 -1.103573e-01 6.442985e-01 -1.335092e-01 -3.009857e-01 1.533717e-01 6.518577e-01 -1.103978e-01 6.518192e-01 -1.102981e-01 6.518009e-01 -1.103582e-01 -3.087279e-01 1.300713e-01
1.452500e+11 -3.007071e-01 1.541169e-01 6.440658e-01 -1.342810e-01 6.517176e-01 -1.110021e-01 6.440771e-01 -1.342767e-01 -3.006764e-01 1.542359e-01 6.517119e-01 -1.110429e-01 6.516735e-01 -1.109419e-01 6.516550e-01 -1.110023e-01 -3.084963e-01 1.308124e-01
1.461250e+11 -3.003968e-01 1.549796e-01 6.438434e-01 -1.350479e-01 6.515711e-01 -1.116466e-01 6.438548e-01 -1.350436e-01 -3.003657e-01 1.550993e-01 6.515654e-01 -1.116876e-01 6.515272e-01 -1.115854e-01 6.515084e-01 -1.116461e-01 -3.082636e-01 1.315529e-01
1.470000e+11 -3.000850e-01 1.558414e-01 6.436198e-01 -1.358143e-01 6.514240e-01 -1.122907e-01 6.436314e-01 -1.358100e-01 -3.000536e-01 1.559617e-01 6.514182e-01 -1.123320e-01 6.513801e-01 -1.122286e-01 6.513612e-01 -1.122896e-01 -3.080298e-01 1.322927e-01
1.478750e+11 -2.997719e-01 1.567024e-01 6.433953e-01 -1.365800e-01 6.512762e-01 -1.129345e-01 6.434069e-01 -1.365758e-01 -2.997401e-01 1.568234e-01 6.512703e-01 -1.129760e-01 6.512324e-01 -1.128715e-01 6.512132e-01 -1.129328e-01 -3.077950e-01 1.330319e-01
1.487500e+11 -2.994573e-01 1.575626e-01 6.431697e-01 -1.373453e-01 6.511276e-01 -1.135779e-01 6.431815e-01 -1.373410e-01 -2.994252e-01 1.576842e-01 6.511217e-01 -1.136196e-01 6.510840e-01 -1.135141e-01 6.510646e-01 -1.135757e-01 -3.075590e-01 1.337704e-01
1.496250e+11 -2.991413e-01 1.584218e-01 6.429430e-01 -1.381099e-01 6.509784e-01 -1.142210e-01 6.429550e-01 -1.381057e-01 -2.991088e-01 1.585441e-01 6.509723e-01 -1.142629e-01 6.509350e-01 -1.141564e-01 6.509153e-01 -1.142183e-01 -3.073220e-01 1.345083e-01
1.505000e+11 -2.988239e-01 1.592803e-01 6.427154e-01 -1.388741e-01 6.508284e-01 -1.148637e-01 6.427274e-01 -1.388698e-01 -2.987910e-01 1.594032e-01 6.508223e-01 -1.149059e-01 6.507852e-01 -1.147983e-01 6.507653e-01 -1.148606e-01 -3.070839e-01 1.352455e-01
1.513750e+11 -2.985051e-01 1.601379e-01 6.424867e-01 -1.396377e-01 6.506778e-01 -1.155061e-01 6.424988e-01 -1.396334e-01 -2.984719e-01 1.602614e-01 6.506716e-01 -1.155485e-01 6.506348e-01 -1.154400e-01 6.506147e-01 -1.155027e-01 -3.068447e-01 1.359821e-01
1.522500e+11 -2.981849e-01 1.609947e-01 6.422569e-01 -1.404007e-01 6.505265e-01 -1.161481e-01 6.422692e-01 -1.403965e-01 -2.981513e-01 1.611188e-01 6.505202e-01 -1.161908e-01 6.504837e-01 -1.160815e-01 6.504633e-01 -1.161444e-01 -3.066045e-01 1.367181e-01
1.531250e+11 -2.978633e-01 1.618506e-01 6.420261e-01 -1.411632e-01 6.503745e-01 -1.167898e-01 6.420386e-01 -1.411590e-01 -2.978293e-01 1.619754e-01 6.503681e-01 -1.168327e-01 6.503319e-01 -1.167226e-01 6.503113e-01 -1.167858e-01 -3.063632e-01 1.374534e-01
1.540000e+11 -2.975403e-01 1.627057e-01 6.417943e-01 -1.419252e-01 6.502218e-01 -1.174312e-01 6.418068e-01 -1.419210e-01 -2.975059e-01 1.628311e-01 6.502153e-01 -1.174743e-01 6.501794e-01 -1.173634e-01 6.501585e-01 -1.174270e-01 -3.061209e-01 1.381881e-01
1.548750e+11 -2.972158e-01 1.635599e-01 6.415614e-01 -1.426866e-01 6.500684e-01 -1.180722e-01 6.415741e-01 -1.426825e-01 -2.971811e-01 1.636860e-01 6.500618e-01 -1.181156e-01 6.500262e-01 -1.180040e-01 6.500051e-01 -1.180679e-01 -3.058775e-01 1.389221e-01
1.557500e+11 -2.968900e-01 1.644133e-01 6.413274e-01 -1.434475e-01 6.499143e-01 -1.187129e-01 6.413403e-01 -1.434434e-01 -2.968548e-01 1.645400e-01 6.499076e-01 -1.187565e-01 6.498723e-01 -1.186443e-01 6.498509e-01 -1.187085e-01 -3.056331e-01 1.396555e-01
1.566250e+11 -2.965627e-01 1.652659e-01 6.410924e-01 -1.442079e-01 6.497595e-01 -1.193532e-01 6.411054e-01 -1.442038e-01 -2.965271e-01 1.653932e-01 6.497528e-01 -1.193971e-01 6.497177e-01 -1.192843e-01 6.496961e-01 -1.193488e-01 -3.053877e-01 1.403883e-01
1.575000e+11 -2.962340e-01 1.661177e-01 6.408564e-01 -1.449677e-01 6.496041e-01 -1.199933e-01 6.408694e-01 -1.449636e-01 -2.961980e-01 1.662456e-01 6.495972e-01 -1.200374e-01 6.495623e-01 -1.199240e-01 6.495405e-01 -1.199889e-01 -3.051412e-01 1.411204e-01
1.583750e+11 -2.959038e-01 1.669686e-01 6.406192e-01 -1.457270e-01 6.494480e-01 -1.206330e-01 6.406324e-01 -1.457230e-01 -2.958675e-01 1.670972e-01 6.494410e-01 -1.206773e-01 6.494063e-01 -1.205635e-01 6.493842e-01 -1.206286e-01 -3.048937e-01 1.418519e-01
1.592500e+11 -2.955722e-01 1.678187e-01 6.403810e-01 -1.464858e-01 6.492912e-01 -1.212724e-01 6.403944e-01 -1.464818e-01 -2.955355e-01 1.679479e-01 6.492842e-01 -1.213169e-01 6.492496e-01 -1.212027e-01 6.492272e-01 -1.212681e-01 -3.046451e-01 1.425828e-01
1.601250e+11 -2.952392e-01 1.686680e-01 6.401417e-01 -1.472440e-01 6.491337e-01 -1.219114e-01 6.401552e-01 -1.472400e-01 -2.952021e-01 1.687978e-01 6.491266e-01 -1.219563e-01 6.490921e-01 -1.218416e-01 6.490695e-01 -1.219074e-01 -3.043955e-01 1.433131e-01
1.610000e+11 -2.949048e-01 1.695164e-01 6.399014e-01 -1.480017e-01 6.489755e-01 -1.225502e-01 6.399150e-01 -1.479977e-01 -2.948673e-01 1.696469e-01 6.489683e-01 -1.225953e-01 6.489339e-01 -1.224802e-01 6.489111e-01 -1.225463e-01 -3.041449e-01 1.440428e-01
1.618750e+11 -2.945689e-01 1.703640e-01 6.396599e-01 -1.487589e-01 6.488167e-01 -1.231886e-01 6.396737e-01 -1.487549e-01 -2.945310e-01 1.704951e-01 6.488094e-01 -1.232339e-01 6.487750e-01 -1.231186e-01 6.487519e-01 -1.231850e-01 -3.038932e-01 1.447718e-01
1.627500e+11 -2.942315e-01 1.712108e-01 6.394174e-01 -1.495155e-01 6.486572e-01 -1.238268e-01 6.394313e-01 -1.495116e-01 -2.941933e-01 1.713425e-01 6.486498e-01 -1.238723e-01 6.486154e-01 -1.237567e-01 6.485920e-01 -1.238234e-01 -3.036405e-01 1.455003e-01
1.636250e+11 -2.938927e-01 1.720567e-01 6.391737e-01 -1.502716e-01 6.484970e-01 -1.244646e-01 6.391878e-01 -1.502677e-01 -2.938541e-01 1.721890e-01 6.484895e-01 -1.245104e-01 6.484550e-01 -1.243945e-01 6.484314e-01 -1.244615e-01 -3.033868e-01 1.462281e-01
1.645000e+11 -2.935525e-01 1.729018e-01 6.389290e-01 -1.510271e-01 6.483361e-01 -1.251022e-01 6.389432e-01 -1.510232e-01 -2.935134e-01 1.730347e-01 6.483285e-01 -1.251482e-01 6.482938e-01 -1.250320e-01 6.482700e-01 -1.250993e-01 -3.031320e-01 1.469553e-01
1.653750e+11 -2.932108e-01 1.737460e-01 6.386832e-01 -1.517821e-01 6.481745e-01 -1.257394e-01 6.386975e-01 -1.517782e-01 -2.931713e-01 1.738795e-01 6.481668e-01 -1.257856e-01 6.481320e-01 -1.256692e-01 6.481078e-01 -1.257368e-01 -3.028762e-01 1.476820e-01
1.662500e+11 -2.928676e-01 1.745894e-01 6.384362e-01 -1.525365e-01 6.480123e-01 -1.263763e-01 6.384507e-01 -1.525327e-01 -2.928277e-01 1.747235e-01 6.480045e-01 -1.264228e-01 6.479693e-01 -1.263062e-01 6.479450e-01 -1.263741e-01 -3.026194e-01 1.484080e-01
1.671250e+11 -2.925230e-01 1.754319e-01 6.381882e-01 -1.532904e-01 6.478493e-01 -1.270130e-01 6.382028e-01 -1.532866e-01 -2.924827e-01 1.755666e-01 6.478414e-01 -1.270597e-01 6.478060e-01 -1.269428e-01 6.477813e-01 -1.270110e-01 -3.023616e-01 1.491335e-01
1.680000e+11 -2.921769e-01 1.762735e-01 6.379390e-01 -1.540437e-01 6.476857e-01 -1.276493e-01 6.379538e-01 -1.540399e-01 -2.921362e-01 1.764088e-01 6.476777e-01 -1.276963e-01 6.476418e-01 -1.275792e-01 6.476169e-01 -1.276477e-01 -3.021027e-01 1.498583e-01
1.688750e+11 -2.918293e-01 1.771142e-01 6.376888e-01 -1.547964e-01 6.475213e-01 -1.282854e-01 6.377037e-01 -1.547926e-01 -2.917882e-01 1.772502e-01 6.475133e-01 -1.283326e-01 6.474769e-01 -1.282152e-01 6.474518e-01 -1.282840e-01 -3.018427e-01 1.505826e-01
1.697500e+11 -2.914803e-01 1.779541e-01 6.374374e-01 -1.555485e-01 6.473563e-01 -1.289212e-01 6.374524e-01 -1.555448e-01 -2.914388e-01 1.780907e-01 6.473481e-01 -1.289686e-01 6.473113e-01 -1.288510e-01 6.472859e-01 -1.289201e-01 -3.015817e-01 1.513063e-01
1.706250e+11 -2.911298e-01 1.787931e-01 6.371849e-01 -1.563001e-01 6.471905e-01 -1.295566e-01 6.372001e-01 -1.562964e-01 -2.910879e-01 1.789303e-01 6.471823e-01 -1.296043e-01 6.471449e-01 -1.294864e-01 6.471192e-01 -1.295558e-01 -3.013197e-01 1.520293e-01
1.715000e+11 -2.907778e-01 1.796312e-01 6.369313e-01 -1.570510e-01 6.470241e-01 -1.301918e-01 6.369466e-01 -1.570474e-01 -2.907355e-01 1.797690e-01 6.470157e-01 -1.302397e-01 6.469777e-01 -1.301215e-01 6.469517e-01 -1.301912e-01 -3.010567e-01 1.527518e-01
1.723750e+11 -2.904244e-01 1.804684e-01 6.366766e-01 -1.578014e-01 6.468569e-01 -1.308267e-01 6.366920e-01 -1.577978e-01 -2.903816e-01 1.806068e-01 6.468485e-01 -1.308749e-01 6.468097e-01 -1.307563e-01 6.467835e-01 -1.308264e-01 -3.007925e-01 1.534738e-01
1.732500e+11 -2.900695e-01 1.813047e-01 6.364208e-01 -1.585511e-01 6.466891e-01 -1.314614e-01 6.364364e-01 -1.585475e-01 -2.900263e-01 1.814436e-01 6.466805e-01 -1.315097e-01 6.466410e-01 -1.313908e-01 6.466146e-01 -1.314611e-01 -3.005274e-01 1.541951e-01
1.741250e+11 -2.897131e-01 1.821401e-01 6.361639e-01 -1.593003e-01 6.465205e-01 -1.320957e-01 6.361796e-01 -1.592967e-01 -2.896695e-01 1.822796e-01 6.465118e-01 -1.321443e-01 6.464716e-01 -1.320250e-01 6.464448e-01 -1.320956e-01 -3.002611e-01 1.549158e-01
1.750000e+11 -2.893552e-01 1.829745e-01 6.359058e-01 -1.600488e-01 6.463512e-01 -1.327297e-01 6.359217e-01 -1.600453e-01 -2.893112e-01 1.831146e-01 6.463424e-01 -1.327786e-01 6.463013e-01 -1.326588e-01 6.462743e-01 -1.327297e-01 -2.999939e-01 1.556360e-01
1.758750e+11 -2.889959e-01 1.838080e-01 6.356466e-01 -1.607967e-01 6.461812e-01 -1.333635e-01 6.356626e-01 -1.607932e-01 -2.889515e-01 1.839488e-01 6.461723e-01 -1.334125e-01 6.461303e-01 -1.332923e-01 6.461030e-01 -1.333635e-01 -2.997255e-01 1.563555e-01
1.767500e+11 -2.886352e-01 1.846406e-01 6.353864e-01 -1.615439e-01 6.460105e-01 -1.339969e-01 6.354025e-01 -1.615405e-01 -2.885903e-01 1.847819e-01 6.460015e-01 -1.340462e-01 6.459586e-01 -1.339254e-01 6.459310e-01 -1.339969e-01 -2.994561e-01 1.570745e-01
1.776250e+11 -2.882729e-01 1.854722e-01 6.351250e-01 -1.622905e-01 6.458390e-01 -1.346301e-01 6.351413e-01 -1.622871e-01 -2.882276e-01 1.856141e-01 6.458299e-01 -1.346797e-01 6.457860e-01 -1.345582e-01 6.457582e-01 -1.346300e-01 -2.991856e-01 1.577929e-01
1.785000e+11 -2.879092e-01 1.863029e-01 6.348625e-01 -1.630365e-01 6.456668e-01 -1.352630e-01 6.348790e-01 -1.630332e-01 -2.878635e-01 1.864454e-01 6.456576e-01 -1.353128e-01 6.456128e-01 -1.351907e-01 6.455846e-01 -1.352627e-01 -2.989141e-01 1.585107e-01
1.793750e+11 -2.875441e-01 1.871326e-01 6.345990e-01 -1.637818e-01 6.454939e-01 -1.358956e-01 6.346155e-01 -1.637785e-01 -2.874979e-01 1.872757e-01 6.454846e-01 -1.359456e-01 6.454387e-01 -1.358228e-01 6.454103e-01 -1.358951e-01 -2.986414e-01 1.592279e-01
1.802500e+11 -2.871775e-01 1.879613e-01 6.343343e-01 -1.645265e-01 6.453202e-01 -1.365279e-01 6.343510e-01 -1.645232e-01 -2.871309e-01 1.881050e-01 6.453108e-01 -1.365781e-01 6.452639e-01 -1.364545e-01 6.452352e-01 -1.365271e-01 -2.983677e-01 1.599445e-01
1.811250e+11 -2.868095e-01 1.887891e-01 6.340686e-01 -1.652705e-01 6.451458e-01 -1.371599e-01 6.340854e-01 -1.652672e-01 -2.867625e-01 1.889333e-01 6.451363e-01 -1.372103e-01 6.450884e-01 -1.370858e-01 6.450594e-01 -1.371588e-01 -2.980930e-01 1.606605e-01
1.820000e+11 -2.864401e-01 1.896158e-01 6.338017e-01 -1.660138e-01 6.449707e-01 -1.377916e-01 6.338188e-01 -1.660106e-01 -2.863926e-01 1.897607e-01 6.449611e-01 -1.378422e-01 6.449121e-01 -1.377168e-01 6.448828e-01 -1.377900e-01 -2.978171e-01 1.613759e-01
1.828750e+11 -2.860692e-01 1.904416e-01 6.335338e-01 -1.667565e-01 6.447948e-01 -1.384229e-01 6.335510e-01 -1.667533e-01 -2.860213e-01 1.905871e-01 6.447851e-01 -1.384739e-01 6.447350e-01 -1.383474e-01 6.447055e-01 -1.384209e-01 -2.975401e-01 1.620906e-01
1.837500e+11 -2.856969e-01 1.912664e-01 6.332649e-01 -1.674984e-01 6.446182e-01 -1.390540e-01 6.332822e-01 -1.674953e-01 -2.856485e-01 1.914125e-01 6.446084e-01 -1.391052e-01 6.445573e-01 -1.389777e-01 6.445275e-01 -1.390514e-01 -2.972621e-01 1.628048e-01
1.846250e+11 -2.853232e-01 1.920902e-01 6.329948e-01 -1.682397e-01 6.444408e-01 -1.396848e-01 6.330123e-01 -1.682367e-01 -2.852744e-01 1.922368e-01 6.444309e-01 -1.397361e-01 6.443787e-01 -1.396075e-01 6.443487e-01 -1.396816e-01 -2.969830e-01 1.635184e-01
1.855000e+11 -2.849481e-01 1.929130e-01 6.327238e-01 -1.689803e-01 6.442627e-01 -1.403152e-01 6.327414e-01 -1.689773e-01 -2.848988e-01 1.930602e-01 6.442527e-01 -1.403668e-01 6.441995e-01 -1.402370e-01 6.441691e-01 -1.403113e-01 -2.967028e-01 1.642313e-01
1.863750e+11 -2.845715e-01 1.937348e-01 6.324516e-01 -1.697202e-01 6.440838e-01 -1.409453e-01 6.324694e-01 -1.697173e-01 -2.845219e-01 1.938826e-01 6.440737e-01 -1.409972e-01 6.440195e-01 -1.408661e-01 6.439889e-01 -1.409407e-01 -2.964215e-01 1.649436e-01
1.872500e+11 -2.841936e-01 1.945556e-01 6.321784e-01 -1.704595e-01 6.439042e-01 -1.415752e-01 6.321963e-01 -1.704565e-01 -2.841435e-01 1.947039e-01 6.438940e-01 -1.416272e-01 6.438388e-01 -1.414948e-01 6.438079e-01 -1.415696e-01 -2.961391e-01 1.656552e-01
1.881250e+11 -2.838143e-01 1.953753e-01 6.319042e-01 -1.711980e-01 6.437239e-01 -1.422046e-01 6.319223e-01 -1.711951e-01 -2.837638e-01 1.955242e-01 6.437135e-01 -1.422569e-01 6.436574e-01 -1.421231e-01 6.436262e-01 -1.421982e-01 -2.958557e-01 1.663663e-01
1.890000e+11 -2.834337e-01 1.961941e-01 6.316290e-01 -1.719358e-01 6.435428e-01 -1.428338e-01 6.316472e-01 -1.719330e-01 -2.833827e-01 1.963435e-01 6.435323e-01 -1.428863e-01 6.434753e-01 -1.427510e-01 6.434438e-01 -1.428264e-01 -2.955711e-01 1.670767e-01
1.898750e+11 -2.830516e-01 1.970118e-01 6.313527e-01 -1.726730e-01 6.433609e-01 -1.434626e-01 6.313711e-01 -1.726702e-01 -2.830002e-01 1.971618e-01 6.433504e-01 -1.435153e-01 6.432925e-01 -1.433785e-01 6.432607e-01 -1.434542e-01 -2.952854e-01 1.677864e-01
1.907500e+11 -2.826683e-01 1.978285e-01 6.310754e-01 -1.734094e-01 6.431783e-01 -1.440911e-01 6.310940e-01 -1.734067e-01 -2.826163e-01 1.979791e-01 6.431676e-01 -1.441441e-01 6.431089e-01 -1.440056e-01 6.430769e-01 -1.440816e-01 -2.949987e-01 1.684955e-01
1.916250e+11 -2.822835e-01 1.986442e-01 6.307972e-01 -1.741452e-01 6.429950e-01 -1.447192e-01 6.308158e-01 -1.741425e-01 -2.822311e-01 1.987953e-01 6.429842e-01 -1.447724e-01 6.429247e-01 -1.446324e-01 6.428924e-01 -1.447086e-01 -2.947109e-01 1.692039e-01
1.925000e+11 -2.818974e-01 1.994588e-01 6.305179e-01 -1.748802e-01 6.428109e-01 -1.453470e-01 6.305367e-01 -1.748776e-01 -2.818446e-01 1.996106e-01 6.428000e-01 -1.454004e-01 6.427398e-01 -1.452587e-01 6.427072e-01 -1.453353e-01 -2.944220e-01 1.699117e-01
1.933750e+11 -2.815100e-01 2.002725e-01 6.302376e-01 -1.756146e-01 6.426260e-01 -1.459744e-01 6.302566e-01 -1.756120e-01 -2.814567e-01 2.004247e-01 6.426150e-01 -1.460281e-01 6.425542e-01 -1.458847e-01 6.425213e-01 -1.459615e-01 -2.941320e-01 1.706188e-01
1.942500e+11 -2.811213e-01 2.010851e-01 6.299564e-01 -1.763482e-01 6.424405e-01 -1.466015e-01 6.299755e-01 -1.763457e-01 -2.810675e-01 2.012379e-01 6.424293e-01 -1.466554e-01 6.423680e-01 -1.465103e-01 6.423347e-01 -1.465873e-01 -2.938409e-01 1.713252e-01
1.951250e+11 -2.807312e-01 2.018967e-01 6.296741e-01 -1.770812e-01 6.422541e-01 -1.472282e-01 6.296934e-01 -1.770788e-01 -2.806770e-01 2.020501e-01 6.422429e-01 -1.472823e-01 6.421810e-01 -1.471355e-01 6.421475e-01 -1.472128e-01 -2.935488e-01 1.720309e-01
1.960000e+11 -2.803399e-01 2.027072e-01 6.293909e-01 -1.778135e-01 6.420671e-01 -1.478546e-01 6.294104e-01 -1.778111e-01 -2.802852e-01 2.028612e-01 6.420557e-01 -1.479089e-01 6.419934e-01 -1.477603e-01 6.419596e-01 -1.478379e-01 -2.932556e-01 1.727360e-01
1.968750e+11 -2.799472e-01 2.035168e-01 6.291068e-01 -1.785451e-01 6.418793e-01 -1.484806e-01 6.291263e-01 -1.785428e-01 -2.798920e-01 2.036713e-01 6.418678e-01 -1.485352e-01 6.418052e-01 -1.483847e-01 6.417710e-01 -1.484626e-01 -2.929613e-01 1.734404e-01
1.977500e+11 -2.795532e-01 2.043253e-01 6.288216e-01 -1.792761e-01 6.416908e-01 -1.491062e-01 6.288414e-01 -1.792738e-01 -2.794976e-01 2.044804e-01 6.416792e-01 -1.491610e-01 6.416162e-01 -1.490088e-01 6.415818e-01 -1.490869e-01 -2.926659e-01 1.741440e-01
1.986250e+11 -2.791580e-01 2.051329e-01 6.285356e-01 -1.800063e-01 6.415015e-01 -1.497315e-01 6.285554e-01 -1.800041e-01 -2.791019e-01 2.052885e-01 6.414898e-01 -1.497865e-01 6.414266e-01 -1.496324e-01 6.413919e-01 -1.497108e-01 -2.923695e-01 1.748470e-01
1.995000e+11 -2.787614e-01 2.059394e-01 6.282485e-01 -1.807359e-01 6.413115e-01 -1.503564e-01 6.282686e-01 -1.807337e-01 -2.787049e-01 2.060955e-01 6.412998e-01 -1.504116e-01 6.412364e-01 -1.502557e-01 6.412013e-01 -1.503344e-01 -2.920720e-01 1.755493e-01
2.003750e+11 -2.783636e-01 2.067449e-01 6.279605e-01 -1.814648e-01 6.411209e-01 -1.509809e-01 6.279807e-01 -1.814627e-01 -2.783066e-01 2.069016e-01 6.411090e-01 -1.510363e-01 6.410455e-01 -1.508787e-01 6.410102e-01 -1.509576e-01 -2.917735e-01 1.762508e-01
2.012500e+11 -2.779645e-01 2.075494e-01 6.276716e-01 -1.821930e-01 6.409295e-01 -1.516050e-01 6.276920e-01 -1.821910e-01 -2.779070e-01 2.077066e-01 6.409174e-01 -1.516607e-01 6.408540e-01 -1.515012e-01 6.408183e-01 -1.515804e-01 -2.914739e-01 1.769517e-01
2.021250e+11 -2.775641e-01 2.083529e-01 6.273818e-01 -1.829206e-01 6.407373e-01 -1.522287e-01 6.274023e-01 -1.829186e-01 -2.775062e-01 2.085107e-01 6.407252e-01 -1.522846e-01 6.406618e-01 -1.521235e-01 6.406258e-01 -1.522029e-01 -2.911733e-01 1.776518e-01
2.030000e+11 -2.771625e-01 2.091554e-01 6.270910e-01 -1.836475e-01 6.405445e-01 -1.528521e-01 6.271116e-01 -1.836456e-01 -2.771041e-01 2.093138e-01 6.405323e-01 -1.529082e-01 6.404690e-01 -1.527453e-01 6.404327e-01 -1.528250e-01 -2.908717e-01 1.783512e-01
2.038750e+11 -2.767596e-01 2.099570e-01 6.267992e-01 -1.843738e-01 6.403510e-01 -1.534751e-01 6.268201e-01 -1.843719e-01 -2.767007e-01 2.101158e-01 6.403386e-01 -1.535314e-01 6.402755e-01 -1.533668e-01 6.402390e-01 -1.534468e-01 -2.905690e-01 1.790499e-01
2.047500e+11 -2.763554e-01 2.107575e-01 6.265066e-01 -1.850995e-01 6.401568e-01 -1.540977e-01 6.265276e-01 -1.850976e-01 -2.762961e-01 2.109169e-01 6.401443e-01 -1.541542e-01 6.400814e-01 -1.539880e-01 6.400446e-01 -1.540682e-01 -2.902653e-01 1.797479e-01
2.056250e+11 -2.759500e-01 2.115571e-01 6.262130e-01 -1.858244e-01 6.399619e-01 -1.547199e-01 6.262341e-01 -1.858227e-01 -2.758902e-01 2.117170e-01 6.399493e-01 -1.547766e-01 6.398867e-01 -1.546088e-01 6.398495e-01 -1.546893e-01 -2.899606e-01 1.804451e-01
2.065000e+11 -2.755433e-01 2.123556e-01 6.259185e-01 -1.865488e-01 6.397663e-01 -1.553417e-01 6.259398e-01 -1.865471e-01 -2.754830e-01 2.125161e-01 6.397535e-01 -1.553987e-01 6.396913e-01 -1.552293e-01 6.396539e-01 -1.553101e-01 -2.896549e-01 1.811417e-01
2.073750e+11 -2.751354e-01 2.131533e-01 6.256230e-01 -1.872725e-01 6.395700e-01 -1.559631e-01 6.256445e-01 -1.872709e-01 -2.750746e-01 2.133143e-01 6.395571e-01 -1.560203e-01 6.394953e-01 -1.558495e-01 6.394575e-01 -1.559305e-01 -2.893481e-01 1.818374e-01
2.082500e+11 -2.747262e-01 2.139499e-01 6.253266e-01 -1.879956e-01 6.393730e-01 -1.565841e-01 6.253483e-01 -1.879941e-01 -2.746649e-01 2.141114e-01 6.393601e-01 -1.566416e-01 6.392987e-01 -1.564693e-01 6.392606e-01 -1.565506e-01 -2.890404e-01 1.825325e-01
2.091250e+11 -2.743158e-01 2.147456e-01 6.250293e-01 -1.887181e-01 6.391754e-01 -1.572048e-01 6.250511e-01 -1.887166e-01 -2.742540e-01 2.149076e-01 6.391623e-01 -1.572624e-01 6.391014e-01 -1.570888e-01 6.390630e-01 -1.571703e-01 -2.887317e-01 1.832268e-01
2.100000e+11 -2.739041e-01 2.155403e-01 6.247311e-01 -1.894400e-01 6.389771e-01 -1.578250e-01 6.247530e-01 -1.894386e-01 -2.738419e-01 2.157029e-01 6.389639e-01 -1.578829e-01 6.389035e-01 -1.577080e-01 6.388648e-01 -1.577898e-01 -2.884220e-01 1.839204e-01
2.108750e+11 -2.734912e-01 2.163340e-01 6.244319e-01 -1.901612e-01 6.387781e-01 -1.584449e-01 6.244540e-01 -1.901599e-01 -2.734284e-01 2.164971e-01 6.387648e-01 -1.585030e-01 6.387049e-01 -1.583269e-01 6.386659e-01 -1.584089e-01 -2.881113e-01 1.846133e-01
2.117500e+11 -2.730770e-01 2.171268e-01 6.241318e-01 -1.908819e-01 6.385785e-01 -1.590644e-01 6.241541e-01 -1.908806e-01 -2.730137e-01 2.172904e-01 6.385651e-01 -1.591227e-01 6.385058e-01 -1.589455e-01 6.384664e-01 -1.590277e-01 -2.877996e-01 1.853054e-01
2.126250e+11 -2.726615e-01 2.179186e-01 6.238307e-01 -1.916019e-01 6.383783e-01 -1.596835e-01 6.238532e-01 -1.916007e-01 -2.725978e-01 2.180828e-01 6.383647e-01 -1.597420e-01 6.383059e-01 -1.595637e-01 6.382662e-01 -1.596462e-01 -2.874870e-01 1.859968e-01
2.135000e+11 -2.722448e-01 2.187095e-01 6.235288e-01 -1.923213e-01 6.381773e-01 -1.603022e-01 6.235513e-01 -1.923202e-01 -2.721806e-01 2.188742e-01 6.381637e-01 -1.603610e-01 6.381054e-01 -1.601817e-01 6.380654e-01 -1.602644e-01 -2.871734e-01 1.866875e-01
2.143750e+11 -2.718268e-01 2.194995e-01 6.232258e-01 -1.930401e-01 6.379758e-01 -1.609206e-01 6.232486e-01 -1.930391e-01 -2.717621e-01 2.196646e-01 6.379620e-01 -1.609796e-01 6.379043e-01 -1.607993e-01 6.378640e-01 -1.608823e-01 -2.868589e-01 1.873775e-01
2.152500e+11 -2.714076e-01 2.202884e-01 6.229219e-01 -1.937583e-01 6.377736e-01 -1.615386e-01 6.229448e-01 -1.937573e-01 -2.713424e-01 2.204541e-01 6.377597e-01 -1.615978e-01 6.377025e-01 -1.614167e-01 6.376619e-01 -1.614999e-01 -2.865434e-01 1.880667e-01
2.161250e+11 -2.709871e-01 2.210765e-01 6.226171e-01 -1.944760e-01 6.375707e-01 -1.621562e-01 6.226402e-01 -1.944750e-01 -2.709214e-01 2.212427e-01 6.375567e-01 -1.622156e-01 6.375000e-01 -1.620337e-01 6.374591e-01 -1.621172e-01 -2.862270e-01 1.887552e-01
2.170000e+11 -2.705653e-01 2.218635e-01 6.223113e-01 -1.951930e-01 6.373673e-01 -1.627734e-01 6.223345e-01 -1.951921e-01 -2.704992e-01 2.220303e-01 6.373531e-01 -1.628330e-01 6.372969e-01 -1.626505e-01 6.372556e-01 -1.627342e-01 -2.859096e-01 1.894430e-01
2.178750e+11 -2.701423e-01 2.226497e-01 6.220046e-01 -1.959094e-01 6.371632e-01 -1.633903e-01 6.220280e-01 -1.959086e-01 -2.700756e-01 2.228169e-01 6.371489e-01 -1.634501e-01 6.370931e-01 -1.632670e-01 6.370515e-01 -1.633509e-01 -2.855913e-01 1.901301e-01
2.187500e+11 -2.697180e-01 2.234348e-01 6.216968e-01 -1.966252e-01 6.369585e-01 -1.640068e-01 6.217204e-01 -1.966245e-01 -2.696508e-01 2.236026e-01 6.369441e-01 -1.640668e-01 6.368887e-01 -1.638831e-01 6.368468e-01 -1.639673e-01 -2.852721e-01 1.908165e-01
2.196250e+11 -2.692924e-01 2.242190e-01 6.213882e-01 -1.973404e-01 6.367531e-01 -1.646230e-01 6.214119e-01 -1.973398e-01 -2.692247e-01 2.243873e-01 6.367386e-01 -1.646832e-01 6.366836e-01 -1.644990e-01 6.366413e-01 -1.645834e-01 -2.849519e-01 1.915021e-01
2.205000e+11 -2.688655e-01 2.250023e-01 6.210785e-01 -1.980550e-01 6.365472e-01 -1.652388e-01 6.211024e-01 -1.980544e-01 -2.687974e-01 2.251711e-01 6.365325e-01 -1.652992e-01 6.364778e-01 -1.651146e-01 6.364352e-01 -1.651992e-01 -2.846308e-01 1.921871e-01
2.213750e+11 -2.684373e-01 2.257846e-01 6.207679e-01 -1.987690e-01 6.363406e-01 -1.658542e-01 6.207919e-01 -1.987685e-01 -2.683687e-01 2.259539e-01 6.363258e-01 -1.659149e-01 6.362713e-01 -1.657298e-01 6.362284e-01 -1.658147e-01 -2.843088e-01 1.928713e-01
2.222500e+11 -2.680079e-01 2.265659e-01 6.204563e-01 -1.994824e-01 6.361334e-01 -1.664693e-01 6.204805e-01 -1.994820e-01 -2.679388e-01 2.267357e-01 6.361185e-01 -1.665302e-01 6.360641e-01 -1.663448e-01 6.360209e-01 -1.664299e-01 -2.839859e-01 1.935549e-01
2.231250e+11 -2.675772e-01 2.273463e-01 6.201437e-01 -2.001951e-01 6.359256e-01 -1.670841e-01 6.201681e-01 -2.001948e-01 -2.675075e-01 2.275166e-01 6.359105e-01 -1.671452e-01 6.358563e-01 -1.669595e-01 6.358128e-01 -1.670448e-01 -2.836621e-01 1.942377e-01
2.240000e+11 -2.671451e-01 2.281257e-01 6.198301e-01 -2.009073e-01 6.357171e-01 -1.676985e-01 6.198547e-01 -2.009070e-01 -2.670750e-01 2.282965e-01 6.357020e-01 -1.677598e-01 6.356477e-01 -1.675738e-01 6.356039e-01 -1.676594e-01 -2.833374e-01 1.949199e-01
2.248750e+11 -2.667118e-01 2.289041e-01 6.195156e-01 -2.016188e-01 6.355081e-01 -1.683126e-01 6.195403e-01 -2.016186e-01 -2.666412e-01 2.290754e-01 6.354928e-01 -1.683741e-01 6.354385e-01 -1.681879e-01 6.353943e-01 -1.682737e-01 -2.830117e-01 1.956014e-01
2.257500e+11 -2.662772e-01 2.296815e-01 6.192000e-01 -2.023297e-01 6.352984e-01 -1.689264e-01 6.192249e-01 -2.023296e-01 -2.662061e-01 2.298533e-01 6.352830e-01 -1.689881e-01 6.352286e-01 -1.688017e-01 6.351841e-01 -1.688877e-01 -2.826852e-01 1.962822e-01
2.266250e+11 -2.658413e-01 2.304580e-01 6.188835e-01 -2.030399e-01 6.350881e-01 -1.695398e-01 6.189085e-01 -2.030399e-01 -2.657696e-01 2.306303e-01 6.350726e-01 -1.696017e-01 6.350180e-01 -1.694151e-01 6.349731e-01 -1.695014e-01 -2.823577e-01 1.969623e-01
2.275000e+11 -2.654041e-01 2.312334e-01 6.185660e-01 -2.037495e-01 6.348773e-01 -1.701529e-01 6.185912e-01 -2.037496e-01 -2.653319e-01 2.314062e-01 6.348616e-01 -1.702151e-01 6.348066e-01 -1.700282e-01 6.347614e-01 -1.701147e-01 -2.820293e-01 1.976417e-01
2.283750e+11 -2.649656e-01 2.320079e-01 6.182474e-01 -2.044585e-01 6.346657e-01 -1.707657e-01 6.182728e-01 -2.044587e-01 -2.648929e-01 2.321811e-01 6.346500e-01 -1.708281e-01 6.345946e-01 -1.706410e-01 6.345491e-01 -1.707277e-01 -2.817000e-01 1.983205e-01
2.292500e+11 -2.645258e-01 2.327813e-01 6.179279e-01 -2.051668e-01 6.344536e-01 -1.713782e-01 6.179535e-01 -2.051671e-01 -2.644526e-01 2.329550e-01 6.344377e-01 -1.714407e-01 6.343818e-01 -1.712535e-01 6.343360e-01 -1.713404e-01 -2.813699e-01 1.989986e-01
2.301250e+11 -2.640848e-01 2.335537e-01 6.176074e-01 -2.058744e-01 6.342409e-01 -1.719903e-01 6.176331e-01 -2.058748e-01 -2.640110e-01 2.337279e-01 6.342248e-01 -1.720531e-01 6.341684e-01 -1.718656e-01 6.341222e-01 -1.719528e-01 -2.810388e-01 1.996761e-01
2.310000e+11 -2.636424e-01 2.343251e-01 6.172859e-01 -2.065814e-01 6.340275e-01 -1.726022e-01 6.173118e-01 -2.065818e-01 -2.635681e-01 2.344998e-01 6.340114e-01 -1.726652e-01 6.339542e-01 -1.724774e-01 6.339077e-01 -1.725648e-01 -2.807068e-01 2.003528e-01
2.318750e+11 -2.631987e-01 2.350954e-01 6.169634e-01 -2.072877e-01 6.338135e-01 -1.732137e-01 6.169894e-01 -2.072882e-01 -2.631239e-01 2.352706e-01 6.337972e-01 -1.732769e-01 6.337393e-01 -1.730889e-01 6.336925e-01 -1.731765e-01 -2.803738e-01 2.010289e-01
2.327500e+11 -2.627537e-01 2.358647e-01 6.166399e-01 -2.079933e-01 6.335989e-01 -1.738250e-01 6.166661e-01 -2.079939e-01 -2.626785e-01 2.360404e-01 6.335825e-01 -1.738884e-01 6.335237e-01 -1.737000e-01 6.334766e-01 -1.737878e-01 -2.800400e-01 2.017044e-01
2.336250e+11 -2.623075e-01 2.366330e-01 6.163154e-01 -2.086982e-01 6.333837e-01 -1.744359e-01 6.163418e-01 -2.086989e-01 -2.622317e-01 2.368091e-01 6.333671e-01 -1.744995e-01 6.333074e-01 -1.743107e-01 6.332599e-01 -1.743987e-01 -2.797053e-01 2.023792e-01
2.345000e+11 -2.618600e-01 2.374001e-01 6.159900e-01 -2.094024e-01 6.331678e-01 -1.750465e-01 6.160165e-01 -2.094032e-01 -2.617837e-01 2.375768e-01 6.331511e-01 -1.751104e-01 6.330904e-01 -1.749211e-01 6.330426e-01 -1.750093e-01 -2.793696e-01 2.030533e-01
2.353750e+11 -2.614112e-01 2.381663e-01 6.156635e-01 -2.101059e-01 6.329513e-01 -1.756569e-01 6.156902e-01 -2.101068e-01 -2.613343e-01 2.383434e-01 6.329345e-01 -1.757209e-01 6.328727e-01 -1.755311e-01 6.328245e-01 -1.756196e-01 -2.790330e-01 2.037268e-01
2.362500e+11 -2.609611e-01 2.389313e-01 6.153361e-01 -2.108087e-01 6.327342e-01 -1.762669e-01 6.153630e-01 -2.108097e-01 -2.608837e-01 2.391089e-01 6.327172e-01 -1.763311e-01 6.326543e-01 -1.761407e-01 6.326058e-01 -1.762294e-01 -2.786955e-01 2.043996e-01
2.371250e+11 -2.605097e-01 2.396952e-01 6.150077e-01 -2.115107e-01 6.325164e-01 -1.768766e-01 6.150348e-01 -2.115118e-01 -2.604318e-01 2.398733e-01 6.324993e-01 -1.769411e-01 6.324352e-01 -1.767500e-01 6.323863e-01 -1.768389e-01 -2.783571e-01 2.050718e-01
2.380000e+11 -2.600571e-01 2.404581e-01 6.146784e-01 -2.122120e-01 6.322979e-01 -1.774860e-01 6.147056e-01 -2.122132e-01 -2.599787e-01 2.406366e-01 6.322808e-01 -1.775507e-01 6.322153e-01 -1.773588e-01 6.321661e-01 -1.774479e-01 -2.780177e-01 2.057433e-01
2.388750e+11 -2.596033e-01 2.412199e-01 6.143481e-01 -2.129126e-01 6.320789e-01 -1.780952e-01 6.143755e-01 -2.129139e-01 -2.595243e-01 2.413989e-01 6.320615e-01 -1.781600e-01 6.319948e-01 -1.779673e-01 6.319453e-01 -1.780566e-01 -2.776774e-01 2.064142e-01
2.397500e+11 -2.591482e-01 2.419805e-01 6.140168e-01 -2.136124e-01 6.318591e-01 -1.787040e-01 6.140444e-01 -2.136138e-01 -2.590687e-01 2.421600e-01 6.318417e-01 -1.787691e-01 6.317736e-01 -1.785754e-01 6.317237e-01 -1.786649e-01 -2.773362e-01 2.070844e-01
2.406250e+11 -2.586918e-01 2.427400e-01 6.136846e-01 -2.143115e-01 6.316387e-01 -1.793125e-01 6.137123e-01 -2.143130e-01 -2.586118e-01 2.429200e-01 6.316212e-01 -1.793778e-01 6.315517e-01 -1.791830e-01 6.315015e-01 -1.792728e-01 -2.769940e-01 2.077540e-01
2.415000e+11 -2.582342e-01 2.434984e-01 6.133514e-01 -2.150098e-01 6.314177e-01 -1.799208e-01 6.133793e-01 -2.150114e-01 -2.581537e-01 2.436788e-01 6.314000e-01 -1.799862e-01 6.313291e-01 -1.797903e-01 6.312786e-01 -1.798802e-01 -2.766509e-01 2.084229e-01
2.423750e+11 -2.577755e-01 2.442557e-01 6.130174e-01 -2.157074e-01 6.311960e-01 -1.805287e-01 6.130454e-01 -2.157090e-01 -2.576944e-01 2.444366e-01 6.311781e-01 -1.805944e-01 6.311059e-01 -1.803971e-01 6.310550e-01 -1.804873e-01 -2.763068e-01 2.090911e-01
2.432500e+11 -2.573155e-01 2.450119e-01 6.126824e-01 -2.164041e-01 6.309736e-01 -1.811363e-01 6.127106e-01 -2.164059e-01 -2.572339e-01 2.451932e-01 6.309556e-01 -1.812022e-01 6.308820e-01 -1.810035e-01 6.308307e-01 -1.810939e-01 -2.759618e-01 2.097587e-01
2.441250e+11 -2.568543e-01 2.457669e-01 6.123465e-01 -2.171001e-01 6.307506e-01 -1.817436e-01 6.123749e-01 -2.171020e-01 -2.567722e-01 2.459486e-01 6.307325e-01 -1.818097e-01 6.306574e-01 -1.816095e-01 6.306058e-01 -1.817000e-01 -2.756158e-01 2.104256e-01
2.450000e+11 -2.563919e-01 2.465207e-01 6.120097e-01 -2.177954e-01 6.305268e-01 -1.823505e-01 6.120383e-01 -2.177973e-01 -2.563092e-01 2.467030e-01 6.305086e-01 -1.824169e-01 6.304321e-01 -1.822150e-01 6.303802e-01 -1.823058e-01 -2.752689e-01 2.110918e-01
2.458750e+11 -2.559283e-01 2.472734e-01 6.116720e-01 -2.184898e-01 6.303024e-01 -1.829572e-01 6.117008e-01 -2.184918e-01 -2.558451e-01 2.474561e-01 6.302841e-01 -1.830237e-01 6.302062e-01 -1.828201e-01 6.301539e-01 -1.829111e-01 -2.749210e-01 2.117573e-01
2.467500e+11 -2.554636e-01 2.480250e-01 6.113334e-01 -2.191834e-01 6.300774e-01 -1.835635e-01 6.113624e-01 -2.191856e-01 -2.553799e-01 2.482081e-01 6.300589e-01 -1.836302e-01 6.299797e-01 -1.834248e-01 6.299270e-01 -1.835160e-01 -2.745722e-01 2.124222e-01
2.476250e+11 -2.549977e-01 2.487754e-01 6.109940e-01 -2.198763e-01 6.298516e-01 -1.841695e-01 6.110231e-01 -2.198786e-01 -2.549134e-01 2.489590e-01 6.298330e-01 -1.842364e-01 6.297525e-01 -1.840290e-01 6.296995e-01 -1.841204e-01 -2.742224e-01 2.130864e-01
2.485000e+11 -2.545306e-01 2.495247e-01 6.106537e-01 -2.205684e-01 6.296252e-01 -1.847752e-01 6.106830e-01 -2.205707e-01 -2.544459e-01 2.497087e-01 6.296064e-01 -1.848423e-01 6.295247e-01 -1.846328e-01 6.294714e-01 -1.847244e-01 -2.738716e-01 2.137499e-01
2.493750e+11 -2.540625e-01 2.502728e-01 6.103126e-01 -2.212597e-01 6.293980e-01 -1.853805e-01 6.103420e-01 -2.212621e-01 -2.539772e-01 2.504573e-01 6.293791e-01 -1.854478e-01 6.292963e-01 -1.852362e-01 6.292426e-01 -1.853280e-01 -2.735199e-01 2.144126e-01
2.502500e+11 -2.535932e-01 2.510197e-01 6.099706e-01 -2.219502e-01 6.291702e-01 -1.859855e-01 6.100002e-01 -2.219527e-01 -2.535073e-01 2.512047e-01 6.291512e-01 -1.860530e-01 6.290673e-01 -1.858391e-01 6.290132e-01 -1.859311e-01 -2.731672e-01 2.150747e-01
2.511250e+11 -2.531228e-01 2.517655e-01 6.096278e-01 -2.226399e-01 6.289417e-01 -1.865901e-01 6.096576e-01 -2.226426e-01 -2.530364e-01 2.519509e-01 6.289226e-01 -1.866578e-01 6.288377e-01 -1.864416e-01 6.287833e-01 -1.865337e-01 -2.728135e-01 2.157360e-01
2.520000e+11 -2.526513e-01 2.525102e-01 6.092842e-01 -2.233288e-01 6.287125e-01 -1.871944e-01 6.093142e-01 -2.233316e-01 -2.525643e-01 2.526960e-01 6.286932e-01 -1.872623e-01 6.286074e-01 -1.870436e-01 6.285527e-01 -1.871359e-01 -2.724589e-01 2.163967e-01
2.528750e+11 -2.521787e-01 2.532536e-01 6.089398e-01 -2.240170e-01 6.284827e-01 -1.877983e-01 6.089699e-01 -2.240199e-01 -2.520912e-01 2.534399e-01 6.284632e-01 -1.878664e-01 6.283766e-01 -1.876452e-01 6.283215e-01 -1.877377e-01 -2.721032e-01 2.170566e-01
2.537500e+11 -2.517050e-01 2.539960e-01 6.085946e-01 -2.247043e-01 6.282521e-01 -1.884018e-01 6.086249e-01 -2.247073e-01 -2.516169e-01 2.541827e-01 6.282325e-01 -1.884701e-01 6.281452e-01 -1.882463e-01 6.280898e-01 -1.883390e-01 -2.717467e-01 2.177157e-01
2.546250e+11 -2.512302e-01 2.547372e-01 6.082486e-01 -2.253909e-01 6.280208e-01 -1.890049e-01 6.082790e-01 -2.253940e-01 -2.511416e-01 2.549243e-01 6.280011e-01 -1.890734e-01 6.279133e-01 -1.888470e-01 6.278575e-01 -1.889399e-01 -2.713891e-01 2.183741e-01
2.555000e+11 -2.507544e-01 2.554772e-01 6.079018e-01 -2.260768e-01 6.277889e-01 -1.896077e-01 6.079324e-01 -2.260800e-01 -2.506653e-01 2.556648e-01 6.277691e-01 -1.896764e-01 6.276807e-01 -1.894473e-01 6.276246e-01 -1.895404e-01 -2.710306e-01 2.190318e-01
2.563750e+11 -2.502775e-01 2.562161e-01 6.075542e-01 -2.267618e-01 6.275563e-01 -1.902100e-01 6.075850e-01 -2.267651e-01 -2.501878e-01 2.564041e-01 6.275363e-01 -1.902789e-01 6.274477e-01 -1.900471e-01 6.273911e-01 -1.901404e-01 -2.706711e-01 2.196887e-01
2.572500e+11 -2.497996e-01 2.569539e-01 6.072059e-01 -2.274461e-01 6.273230e-01 -1.908120e-01 6.072369e-01 -2.274496e-01 -2.497094e-01 2.571423e-01 6.273029e-01 -1.908811e-01 6.272140e-01 -1.906465e-01 6.271572e-01 -1.907400e-01 -2.703107e-01 2.203448e-01
2.581250e+11 -2.493206e-01 2.576906e-01 6.068568e-01 -2.281297e-01 6.270890e-01 -1.914135e-01 6.068880e-01 -2.281332e-01 -2.492299e-01 2.578794e-01 6.270688e-01 -1.914828e-01 6.269798e-01 -1.912455e-01 6.269226e-01 -1.913391e-01 -2.699493e-01 2.210002e-01
2.590000e+11 -2.488406e-01 2.584261e-01 6.065070e-01 -2.288125e-01 6.268544e-01 -1.920146e-01 6.065383e-01 -2.288161e-01 -2.487493e-01 2.586154e-01 6.268340e-01 -1.920842e-01 6.267451e-01 -1.918440e-01 6.266875e-01 -1.919379e-01 -2.695870e-01 2.216547e-01
2.598750e+11 -2.483596e-01 2.591605e-01 6.061564e-01 -2.294945e-01 6.266190e-01 -1.926153e-01 6.061879e-01 -2.294983e-01 -2.482677e-01 2.593502e-01 6.265985e-01 -1.926851e-01 6.265099e-01 -1.924421e-01 6.264519e-01 -1.925362e-01 -2.692237e-01 2.223085e-01
2.607500e+11 -2.478775e-01 2.598939e-01 6.058050e-01 -2.301759e-01 6.263830e-01 -1.932156e-01 6.058367e-01 -2.301797e-01 -2.477851e-01 2.600840e-01 6.263624e-01 -1.932855e-01 6.262741e-01 -1.930399e-01 6.262158e-01 -1.931341e-01 -2.688595e-01 2.229615e-01
2.616250e+11 -2.473945e-01 2.606261e-01 6.054530e-01 -2.308565e-01 6.261464e-01 -1.938154e-01 6.054848e-01 -2.308605e-01 -2.473015e-01 2.608166e-01 6.261256e-01 -1.938855e-01 6.260377e-01 -1.936372e-01 6.259791e-01 -1.937316e-01 -2.684943e-01 2.236136e-01
2.625000e+11 -2.469104e-01 2.613572e-01 6.051002e-01 -2.315364e-01 6.259091e-01 -1.944148e-01 6.051322e-01 -2.315405e-01 -2.468169e-01 2.615481e-01 6.258881e-01 -1.944851e-01 6.258009e-01 -1.942341e-01 6.257419e-01 -1.943287e-01 -2.681282e-01 2.242650e-01
2.633750e+11 -2.464253e-01 2.620872e-01 6.047466e-01 -2.322156e-01 6.256711e-01 -1.950137e-01 6.047788e-01 -2.322198e-01 -2.463312e-01 2.622786e-01 6.256500e-01 -1.950843e-01 6.255635e-01 -1.948307e-01 6.255042e-01 -1.949255e-01 -2.677612e-01 2.249155e-01
2.642500e+11 -2.459392e-01 2.628162e-01 6.043923e-01 -2.328940e-01 6.254325e-01 -1.956122e-01 6.044247e-01 -2.328984e-01 -2.458445e-01 2.630079e-01 6.254113e-01 -1.956829e-01 6.253257e-01 -1.954268e-01 6.252659e-01 -1.955218e-01 -2.673932e-01 2.255652e-01
2.651250e+11 -2.454520e-01 2.635440e-01 6.040373e-01 -2.335718e-01 6.251933e-01 -1.962102e-01 6.040699e-01 -2.335763e-01 -2.453569e-01 2.637362e-01 6.251719e-01 -1.962811e-01 6.250872e-01 -1.960226e-01 6.250272e-01 -1.961177e-01 -2.670244e-01 2.262140e-01
2.660000e+11 -2.449639e-01 2.642708e-01 6.036816e-01 -2.342489e-01 6.249534e-01 -1.968078e-01 6.037143e-01 -2.342535e-01 -2.448682e-01 2.644634e-01 6.249319e-01 -1.968789e-01 6.248483e-01 -1.966180e-01 6.247879e-01 -1.967133e-01 -2.666546e-01 2.268621e-01
2.668750e+11 -2.444747e-01 2.649966e-01 6.033251e-01 -2.349253e-01 6.247129e-01 -1.974049e-01 6.033580e-01 -2.349300e-01 -2.443784e-01 2.651896e-01 6.246913e-01 -1.974762e-01 6.246089e-01 -1.972130e-01 6.245481e-01 -1.973085e-01 -2.662840e-01 2.275092e-01
2.677500e+11 -2.439846e-01 2.657213e-01 6.029679e-01 -2.356011e-01 6.244718e-01 -1.980015e-01 6.030009e-01 -2.356059e-01 -2.438877e-01 2.659147e-01 6.244500e-01 -1.980730e-01 6.243689e-01 -1.978077e-01 6.243077e-01 -1.979034e-01 -2.659124e-01 2.281555e-01
2.686250e+11 -2.434934e-01 2.664449e-01 6.026099e-01 -2.362762e-01 6.242301e-01 -1.985976e-01 6.026431e-01 -2.362811e-01 -2.433960e-01 2.666387e-01 6.242082e-01 -1.986693e-01 6.241284e-01 -1.984020e-01 6.240669e-01 -1.984979e-01 -2.655400e-01 2.288010e-01
2.695000e+11 -2.430011e-01 2.671675e-01 6.022511e-01 -2.369506e-01 6.239878e-01 -1.991933e-01 6.022846e-01 -2.369556e-01 -2.429032e-01 2.673617e-01 6.239657e-01 -1.992651e-01 6.238874e-01 -1.989960e-01 6.238255e-01 -1.990920e-01 -2.651668e-01 2.294456e-01
2.703750e+11 -2.425079e-01 2.678891e-01 6.018917e-01 -2.376243e-01 6.237449e-01 -1.997884e-01 6.019252e-01 -2.376295e-01 -2.424094e-01 2.680837e-01 6.237227e-01 -1.998605e-01 6.236459e-01 -1.995897e-01 6.235836e-01 -1.996858e-01 -2.647926e-01 2.300893e-01
2.712500e+11 -2.420136e-01 2.686096e-01 6.015314e-01 -2.382975e-01 6.235014e-01 -2.003831e-01 6.015652e-01 -2.383027e-01 -2.419146e-01 2.688046e-01 6.234790e-01 -2.004554e-01 6.234038e-01 -2.001830e-01 6.233411e-01 -2.002793e-01 -2.644176e-01 2.307322e-01
2.721250e+11 -2.415183e-01 2.693291e-01 6.011704e-01 -2.389699e-01 6.232573e-01 -2.009773e-01 6.012043e-01 -2.389753e-01 -2.414187e-01 2.695245e-01 6.232348e-01 -2.010498e-01 6.231611e-01 -2.007759e-01 6.230982e-01 -2.008725e-01 -2.640418e-01 2.313742e-01
2.730000e+11 -2.410220e-01 2.700475e-01 6.008086e-01 -2.396417e-01 6.230127e-01 -2.015710e-01 6.008427e-01 -2.396473e-01 -2.409218e-01 2.702433e-01 6.229901e-01 -2.016437e-01 6.229180e-01 -2.013686e-01 6.228546e-01 -2.014653e-01 -2.636651e-01 2.320153e-01
2.738750e+11 -2.405246e-01 2.707649e-01 6.004460e-01 -2.403129e-01 6.227675e-01 -2.021643e-01 6.004803e-01 -2.403186e-01 -2.404238e-01 2.709611e-01 6.227447e-01 -2.022371e-01 6.226743e-01 -2.019609e-01 6.226105e-01 -2.020578e-01 -2.632877e-01 2.326556e-01
2.747500e+11 -2.400261e-01 2.714813e-01 6.000826e-01 -2.409835e-01 6.225218e-01 -2.027570e-01 6.001171e-01 -2.409893e-01 -2.399248e-01 2.716779e-01 6.224989e-01 -2.028300e-01 6.224300e-01 -2.025529e-01 6.223659e-01 -2.026499e-01 -2.629094e-01 2.332950e-01
2.756250e+11 -2.395265e-01 2.721967e-01 5.997184e-01 -2.416534e-01 6.222755e-01 -2.033493e-01 5.997531e-01 -2.416593e-01 -2.394247e-01 2.723936e-01 6.222524e-01 -2.034225e-01 6.221851e-01 -2.031446e-01 6.221207e-01 -2.032418e-01 -2.625303e-01 2.339336e-01
2.765000e+11 -2.390259e-01 2.729110e-01 5.993534e-01 -2.423226e-01 6.220287e-01 -2.039411e-01 5.993882e-01 -2.423287e-01 -2.389235e-01 2.731084e-01 6.220055e-01 -2.040145e-01 6.219397e-01 -2.037360e-01 6.218749e-01 -2.038333e-01 -2.621504e-01 2.345713e-01
2.773750e+11 -2.385242e-01 2.736243e-01 5.989876e-01 -2.429912e-01 6.217814e-01 -2.045324e-01 5.990226e-01 -2.429974e-01 -2.384212e-01 2.738220e-01 6.217580e-01 -2.046060e-01 6.216937e-01 -2.043270e-01 6.216285e-01 -2.044245e-01 -2.617697e-01 2.352081e-01
2.782500e+11 -2.380215e-01 2.743365e-01 5.986209e-01 -2.436592e-01 6.215335e-01 -2.051232e-01 5.986561e-01 -2.436655e-01 -2.379179e-01 2.745347e-01 6.215100e-01 -2.051970e-01 6.214471e-01 -2.049177e-01 6.213815e-01 -2.050154e-01 -2.613882e-01 2.358441e-01
2.791250e+11 -2.375176e-01 2.750477e-01 5.982534e-01 -2.443265e-01 6.212852e-01 -2.057136e-01 5.982888e-01 -2.443329e-01 -2.374134e-01 2.752462e-01 6.212615e-01 -2.057876e-01 6.211999e-01 -2.055082e-01 6.211340e-01 -2.056060e-01 -2.610060e-01 2.364792e-01
2.800000e+11 -2.370126e-01 2.757578e-01 5.978851e-01 -2.449931e-01 6.210363e-01 -2.063035e-01 5.979206e-01 -2.449997e-01 -2.369079e-01 2.759568e-01 6.210125e-01 -2.063777e-01 6.209521e-01 -2.060983e-01 6.208858e-01 -2.061963e-01 -2.606230e-01 2.371135e-01
2.808750e+11 -2.365065e-01 2.764669e-01 5.975159e-01 -2.456591e-01 6.207869e-01 -2.068929e-01 5.975516e-01 -2.456658e-01 -2.364012e-01 2.766662e-01 6.207630e-01 -2.069673e-01 6.207037e-01 -2.066880e-01 6.206370e-01 -2.067862e-01 -2.602392e-01 2.377469e-01
2.817500e+11 -2.359992e-01 2.771750e-01 5.971458e-01 -2.463244e-01 6.205371e-01 -2.074819e-01 5.971816e-01 -2.463313e-01 -2.358934e-01 2.773746e-01 6.205130e-01 -2.075565e-01 6.204546e-01 -2.072775e-01 6.203876e-01 -2.073758e-01 -2.598547e-01 2.383795e-01
2.826250e+11 -2.354908e-01 2.778819e-01 5.967748e-01 -2.469891e-01 6.202867e-01 -2.080705e-01 5.968108e-01 -2.469960e-01 -2.353845e-01 2.780820e-01 6.202625e-01 -2.081452e-01 6.202050e-01 -2.078666e-01 6.201375e-01 -2.079651e-01 -2.594694e-01 2.390112e-01
2.835000e+11 -2.349813e-01 2.785878e-01 5.964030e-01 -2.476530e-01 6.200359e-01 -2.086586e-01 5.964392e-01 -2.476601e-01 -2.348744e-01 2.787882e-01 6.200115e-01 -2.087335e-01 6.199546e-01 -2.084554e-01 6.198868e-01 -2.085541e-01 -2.590834e-01 2.396422e-01
2.843750e+11 -2.344707e-01 2.792925e-01 5.960302e-01 -2.483163e-01 6.197846e-01 -2.092463e-01 5.960666e-01 -2.483235e-01 -2.343632e-01 2.794933e-01 6.197601e-01 -2.093214e-01 6.197036e-01 -2.090439e-01 6.196355e-01 -2.091427e-01 -2.586966e-01 2.402723e-01
2.852500e+11 -2.339589e-01 2.799962e-01 5.956565e-01 -2.489788e-01 6.195328e-01 -2.098335e-01 5.956931e-01 -2.489862e-01 -2.338508e-01 2.801974e-01 6.195081e-01 -2.099088e-01 6.194520e-01 -2.096320e-01 6.193834e-01 -2.097309e-01 -2.583091e-01 2.409016e-01
2.861250e+11 -2.334459e-01 2.806988e-01 5.952820e-01 -2.496406e-01 6.192805e-01 -2.104204e-01 5.953187e-01 -2.496481e-01 -2.333372e-01 2.809003e-01 6.192557e-01 -2.104959e-01 6.191997e-01 -2.102198e-01 6.191307e-01 -2.103188e-01 -2.579209e-01 2.415301e-01
2.870000e+11 -2.329318e-01 2.814002e-01 5.949065e-01 -2.503017e-01 6.190277e-01 -2.110068e-01 5.949434e-01 -2.503093e-01 -2.328226e-01 2.816021e-01 6.190028e-01 -2.110825e-01 6.189467e-01 -2.108072e-01 6.188774e-01 -2.109064e-01 -2.575319e-01 2.421578e-01
2.878750e+11 -2.324165e-01 2.821004e-01 5.945301e-01 -2.509620e-01 6.187745e-01 -2.115929e-01 5.945671e-01 -2.509698e-01 -2.323067e-01 2.823027e-01 6.187494e-01 -2.116687e-01 6.186930e-01 -2.113942e-01 6.186233e-01 -2.114936e-01 -2.571422e-01 2.427848e-01
2.887500e+11 -2.319001e-01 2.827995e-01 5.941527e-01 -2.516215e-01 6.185208e-01 -2.121785e-01 5.941900e-01 -2.516295e-01 -2.317897e-01 2.830022e-01 6.184955e-01 -2.122546e-01 6.184386e-01 -2.119808e-01 6.183685e-01 -2.120803e-01 -2.567517e-01 2.434109e-01
2.896250e+11 -2.313825e-01 2.834974e-01 5.937744e-01 -2.522803e-01 6.182666e-01 -2.127638e-01 5.938119e-01 -2.522884e-01 -2.312715e-01 2.837004e-01 6.182412e-01 -2.128400e-01 6.181835e-01 -2.125671e-01 6.181131e-01 -2.126667e-01 -2.563605e-01 2.440363e-01
2.905000e+11 -2.308637e-01 2.841942e-01 5.933953e-01 -2.529383e-01 6.180119e-01 -2.133487e-01 5.934328e-01 -2.529465e-01 -2.307522e-01 2.843975e-01 6.179863e-01 -2.134251e-01 6.179277e-01 -2.131529e-01 6.178569e-01 -2.132527e-01 -2.559686e-01 2.446609e-01
2.913750e+11 -2.303438e-01 2.848897e-01 5.930151e-01 -2.535954e-01 6.177567e-01 -2.139332e-01 5.930529e-01 -2.536038e-01 -2.302317e-01 2.850934e-01 6.177310e-01 -2.140098e-01 6.176713e-01 -2.137383e-01 6.176001e-01 -2.138383e-01 -2.555759e-01 2.452848e-01
2.922500e+11 -2.298227e-01 2.855840e-01 5.926341e-01 -2.542517e-01 6.175010e-01 -2.145174e-01 5.926720e-01 -2.542602e-01 -2.297100e-01 2.857881e-01 6.174752e-01 -2.145942e-01 6.174141e-01 -2.143233e-01 6.173425e-01 -2.144234e-01 -2.551824e-01 2.459079e-01
2.931250e+11 -2.293005e-01 2.862771e-01 5.922521e-01 -2.549072e-01 6.172448e-01 -2.151012e-01 5.922902e-01 -2.549159e-01 -2.291872e-01 2.864815e-01 6.172189e-01 -2.151782e-01 6.171561e-01 -2.149079e-01 6.170842e-01 -2.150081e-01 -2.547882e-01 2.465303e-01
2.940000e+11 -2.287771e-01 2.869689e-01 5.918692e-01 -2.555618e-01 6.169881e-01 -2.156847e-01 5.919075e-01 -2.555706e-01 -2.286632e-01 2.871736e-01 6.169620e-01 -2.157619e-01 6.168975e-01 -2.154920e-01 6.168252e-01 -2.155924e-01 -2.543932e-01 2.471519e-01
2.948750e+11 -2.282525e-01 2.876594e-01 5.914854e-01 -2.562155e-01 6.167309e-01 -2.162679e-01 5.915239e-01 -2.562245e-01 -2.281381e-01 2.878645e-01 6.167047e-01 -2.163452e-01 6.166382e-01 -2.160756e-01 6.165655e-01 -2.161761e-01 -2.539975e-01 2.477728e-01
2.957500e+11 -2.277269e-01 2.883486e-01 5.911007e-01 -2.568684e-01 6.164732e-01 -2.168507e-01 5.911393e-01 -2.568775e-01 -2.276119e-01 2.885541e-01 6.164468e-01 -2.169282e-01 6.163781e-01 -2.166587e-01 6.163050e-01 -2.167594e-01 -2.536009e-01 2.483930e-01
2.966250e+11 -2.272001e-01 2.890366e-01 5.907151e-01 -2.575203e-01 6.162149e-01 -2.174332e-01 5.907539e-01 -2.575295e-01 -2.270845e-01 2.892424e-01 6.161883e-01 -2.175109e-01 6.161174e-01 -2.172414e-01 6.160439e-01 -2.173422e-01 -2.532036e-01 2.490124e-01
2.975000e+11 -2.266722e-01 2.897232e-01 5.903286e-01 -2.581713e-01 6.159561e-01 -2.180154e-01 5.903676e-01 -2.581807e-01 -2.265560e-01 2.899294e-01 6.159294e-01 -2.180933e-01 6.158559e-01 -2.178235e-01 6.157820e-01 -2.179245e-01 -2.528054e-01 2.496312e-01
2.983750e+11 -2.261432e-01 2.904085e-01 5.899412e-01 -2.588213e-01 6.156967e-01 -2.185973e-01 5.899804e-01 -2.588309e-01 -2.260264e-01 2.906151e-01 6.156698e-01 -2.186754e-01 6.155937e-01 -2.184052e-01 6.155195e-01 -2.185062e-01 -2.524065e-01 2.502492e-01
2.992500e+11 -2.256131e-01 2.910925e-01 5.895530e-01 -2.594704e-01 6.154368e-01 -2.191789e-01 5.895923e-01 -2.594801e-01 -2.254957e-01 2.912994e-01 6.154097e-01 -2.192572e-01 6.153308e-01 -2.189863e-01 6.152562e-01 -2.190875e-01 -2.520067e-01 2.508665e-01
3.001250e+11 -2.250819e-01 2.917751e-01 5.891639e-01 -2.601185e-01 6.151762e-01 -2.197602e-01 5.892034e-01 -2.601284e-01 -2.249640e-01 2.919823e-01 6.151491e-01 -2.198386e-01 6.150672e-01 -2.195668e-01 6.149922e-01 -2.196681e-01 -2.516060e-01 2.514831e-01
3.010000e+11 -2.245497e-01 2.924564e-01 5.887740e-01 -2.607657e-01 6.149151e-01 -2.203411e-01 5.888136e-01 -2.607757e-01 -2.244312e-01 2.926639e-01 6.148878e-01 -2.204198e-01 6.148030e-01 -2.201468e-01 6.147276e-01 -2.202482e-01 -2.512045e-01 2.520990e-01
3.018750e+11 -2.240164e-01 2.931363e-01 5.883832e-01 -2.614119e-01 6.146533e-01 -2.209218e-01 5.884230e-01 -2.614220e-01 -2.238973e-01 2.933442e-01 6.146259e-01 -2.210006e-01 6.145380e-01 -2.207262e-01 6.144623e-01 -2.208278e-01 -2.508022e-01 2.527142e-01
3.027500e+11 -2.234821e-01 2.938148e-01 5.879917e-01 -2.620571e-01 6.143910e-01 -2.215022e-01 5.880317e-01 -2.620674e-01 -2.233624e-01 2.940230e-01 6.143634e-01 -2.215812e-01 6.142724e-01 -2.213050e-01 6.141963e-01 -2.214067e-01 -2.503990e-01 2.533287e-01
3.036250e+11 -2.229468e-01 2.944920e-01 5.875993e-01 -2.627012e-01 6.141280e-01 -2.220822e-01 5.876395e-01 -2.627117e-01 -2.228265e-01 2.947005e-01 6.141002e-01 -2.221614e-01 6.140061e-01 -2.218833e-01 6.139296e-01 -2.219851e-01 -2.499948e-01 2.539424e-01
3.045000e+11 -2.224105e-01 2.951678e-01 5.872062e-01 -2.633444e-01 6.138643e-01 -2.226620e-01 5.872465e-01 -2.633550e-01 -2.222896e-01 2.953766e-01 6.138364e-01 -2.227414e-01 6.137392e-01 -2.224609e-01 6.136623e-01 -2.225629e-01 -2.495898e-01 2.545554e-01
3.053750e+11 -2.218732e-01 2.958422e-01 5.868124e-01 -2.639866e-01 6.136000e-01 -2.232415e-01 5.868528e-01 -2.639974e-01 -2.217518e-01 2.960513e-01 6.135719e-01 -2.233210e-01 6.134716e-01 -2.230380e-01 6.133943e-01 -2.231401e-01 -2.491839e-01 2.551677e-01
3.062500e+11 -2.213349e-01 2.965152e-01 5.864178e-01 -2.646277e-01 6.133349e-01 -2.238206e-01 5.864584e-01 -2.646387e-01 -2.212129e-01 2.967247e-01 6.133067e-01 -2.239003e-01 6.132034e-01 -2.236144e-01 6.131257e-01 -2.237166e-01 -2.487770e-01 2.557793e-01
3.071250e+11 -2.207958e-01 2.971868e-01 5.860224e-01 -2.652679e-01 6.130692e-01 -2.243994e-01 5.860633e-01 -2.652790e-01 -2.206732e-01 2.973966e-01 6.130409e-01 -2.244793e-01 6.129346e-01 -2.241902e-01 6.128565e-01 -2.242926e-01 -2.483691e-01 2.563901e-01
3.080000e+11 -2.202556e-01 2.978570e-01 5.856264e-01 -2.659071e-01 6.128028e-01 -2.249779e-01 5.856674e-01 -2.659183e-01 -2.201325e-01 2.980672e-01 6.127743e-01 -2.250580e-01 6.126652e-01 -2.247654e-01 6.125868e-01 -2.248679e-01 -2.479604e-01 2.570002e-01
3.088750e+11 -2.197146e-01 2.985259e-01 5.852297e-01 -2.665452e-01 6.125356e-01 -2.255561e-01 5.852709e-01 -2.665566e-01 -2.195909e-01 2.987363e-01 6.125070e-01 -2.256364e-01 6.123952e-01 -2.253400e-01 6.123164e-01 -2.254426e-01 -2.475506e-01 2.576095e-01
3.097500e+11 -2.191727e-01 2.991934e-01 5.848324e-01 -2.671824e-01 6.122677e-01 -2.261339e-01 5.848737e-01 -2.671940e-01 -2.190484e-01 2.994042e-01 6.122389e-01 -2.262144e-01 6.121246e-01 -2.259140e-01 6.120454e-01 -2.260167e-01 -2.471398e-01 2.582180e-01
3.106250e+11 -2.186300e-01 2.998595e-01 5.844344e-01 -2.678186e-01 6.119991e-01 -2.267114e-01 5.844759e-01 -2.678303e-01 -2.185050e-01 3.000706e-01 6.119701e-01 -2.267920e-01 6.118535e-01 -2.264873e-01 6.117739e-01 -2.265901e-01 -2.467281e-01 2.588258e-01
3.115000e+11 -2.180863e-01 3.005243e-01 5.840358e-01 -2.684538e-01 6.117296e-01 -2.272885e-01 5.840775e-01 -2.684657e-01 -2.179608e-01 3.007357e-01 6.117005e-01 -2.273693e-01 6.115818e-01 -2.270600e-01 6.115018e-01 -2.271629e-01 -2.463153e-01 2.594327e-01
3.123750e+11 -2.175419e-01 3.011878e-01 5.836366e-01 -2.690880e-01 6.114594e-01 -2.278652e-01 5.836784e-01 -2.691001e-01 -2.174157e-01 3.013995e-01 6.114301e-01 -2.279462e-01 6.113096e-01 -2.276322e-01 6.112293e-01 -2.277352e-01 -2.459016e-01 2.600388e-01
3.132500e+11 -2.169966e-01 3.018499e-01 5.832368e-01 -2.697213e-01 6.111884e-01 -2.284415e-01 5.832788e-01 -2.697336e-01 -2.168698e-01 3.020619e-01 6.111590e-01 -2.285227e-01 6.110369e-01 -2.282037e-01 6.109562e-01 -2.283068e-01 -2.454868e-01 2.606441e-01
3.141250e+11 -2.164505e-01 3.025107e-01 5.828364e-01 -2.703537e-01 6.109166e-01 -2.290174e-01 5.828785e-01 -2.703661e-01 -2.163231e-01 3.027231e-01 6.108870e-01 -2.290988e-01 6.107637e-01 -2.287745e-01 6.106825e-01 -2.288778e-01 -2.450710e-01 2.612486e-01
3.150000e+11 -2.159035e-01 3.031703e-01 5.824354e-01 -2.709852e-01 6.106440e-01 -2.295929e-01 5.824778e-01 -2.709978e-01 -2.157756e-01 3.033829e-01 6.106142e-01 -2.296745e-01 6.104900e-01 -2.293448e-01 6.104084e-01 -2.294482e-01 -2.446541e-01 2.618522e-01
3.158750e+11 -2.153558e-01 3.038285e-01 5.820339e-01 -2.716158e-01 6.103705e-01 -2.301680e-01 5.820764e-01 -2.716285e-01 -2.152273e-01 3.040415e-01 6.103406e-01 -2.302497e-01 6.102158e-01 -2.299146e-01 6.101339e-01 -2.300180e-01 -2.442362e-01 2.624549e-01
3.167500e+11 -2.148073e-01 3.044855e-01 5.816318e-01 -2.722455e-01 6.100963e-01 -2.307426e-01 5.816745e-01 -2.722584e-01 -2.146782e-01 3.046988e-01 6.100662e-01 -2.308245e-01 6.099411e-01 -2.304837e-01 6.098588e-01 -2.305873e-01 -2.438173e-01 2.630566e-01
3.176250e+11 -2.142580e-01 3.051413e-01 5.812292e-01 -2.728744e-01 6.098212e-01 -2.313167e-01 5.812721e-01 -2.728875e-01 -2.141283e-01 3.053549e-01 6.097910e-01 -2.313988e-01 6.096660e-01 -2.310523e-01 6.095833e-01 -2.311560e-01 -2.433973e-01 2.636575e-01
3.185000e+11 -2.137080e-01 3.057959e-01 5.808261e-01 -2.735025e-01 6.095453e-01 -2.318903e-01 5.808691e-01 -2.735157e-01 -2.135777e-01 3.060097e-01 6.095149e-01 -2.319726e-01 6.093904e-01 -2.316203e-01 6.093074e-01 -2.317241e-01 -2.429763e-01 2.642575e-01
3.193750e+11 -2.131571e-01 3.064493e-01 5.804224e-01 -2.741298e-01 6.092685e-01 -2.324634e-01 5.804655e-01 -2.741432e-01 -2.130262e-01 3.066634e-01 6.092380e-01 -2.325458e-01 6.091144e-01 -2.321879e-01 6.090310e-01 -2.322917e-01 -2.425542e-01 2.648564e-01
3.202500e+11 -2.126055e-01 3.071015e-01 5.800181e-01 -2.747563e-01 6.089909e-01 -2.330360e-01 5.800615e-01 -2.747698e-01 -2.124740e-01 3.073159e-01 6.089602e-01 -2.331186e-01 6.088380e-01 -2.327549e-01 6.087541e-01 -2.328588e-01 -2.421311e-01 2.654544e-01
3.211250e+11 -2.120530e-01 3.077526e-01 5.796134e-01 -2.753820e-01 6.087124e-01 -2.336080e-01 5.796569e-01 -2.753958e-01 -2.119210e-01 3.079673e-01 6.086816e-01 -2.336908e-01 6.085611e-01 -2.333214e-01 6.084769e-01 -2.334254e-01 -2.417070e-01 2.660514e-01
3.220000e+11 -2.114998e-01 3.084026e-01 5.792081e-01 -2.760071e-01 6.084332e-01 -2.341795e-01 5.792517e-01 -2.760210e-01 -2.113672e-01 3.086176e-01 6.084022e-01 -2.342624e-01 6.082838e-01 -2.338874e-01 6.081992e-01 -2.339916e-01 -2.412818e-01 2.666474e-01
3.228750e+11 -2.109458e-01 3.090514e-01 5.788022e-01 -2.766315e-01 6.081531e-01 -2.347503e-01 5.788460e-01 -2.766456e-01 -2.108126e-01 3.092667e-01 6.081219e-01 -2.348335e-01 6.080061e-01 -2.344530e-01 6.079211e-01 -2.345572e-01 -2.408557e-01 2.672424e-01
3.237500e+11 -2.103910e-01 3.096992e-01 5.783958e-01 -2.772552e-01 6.078721e-01 -2.353206e-01 5.784397e-01 -2.772694e-01 -2.102571e-01 3.099148e-01 6.078408e-01 -2.354039e-01 6.077280e-01 -2.350181e-01 6.076426e-01 -2.351225e-01 -2.404285e-01 2.678363e-01
3.246250e+11 -2.098353e-01 3.103460e-01 5.779887e-01 -2.778783e-01 6.075904e-01 -2.358902e-01 5.780329e-01 -2.778927e-01 -2.097009e-01 3.105619e-01 6.075589e-01 -2.359737e-01 6.074495e-01 -2.355828e-01 6.073637e-01 -2.356873e-01 -2.400003e-01 2.684291e-01
3.255000e+11 -2.092788e-01 3.109917e-01 5.775811e-01 -2.785007e-01 6.073079e-01 -2.364592e-01 5.776254e-01 -2.785154e-01 -2.091438e-01 3.112079e-01 6.072763e-01 -2.365429e-01 6.071705e-01 -2.361471e-01 6.070843e-01 -2.362517e-01 -2.395712e-01 2.690209e-01
3.263750e+11 -2.087215e-01 3.116364e-01 5.771729e-01 -2.791226e-01 6.070246e-01 -2.370275e-01 5.772174e-01 -2.791374e-01 -2.085858e-01 3.118529e-01 6.069928e-01 -2.371114e-01 6.068911e-01 -2.367111e-01 6.068045e-01 -2.368158e-01 -2.391411e-01 2.696116e-01
3.272500e+11 -2.081632e-01 3.122801e-01 5.767640e-01 -2.797440e-01 6.067405e-01 -2.375952e-01 5.768087e-01 -2.797590e-01 -2.080270e-01 3.124969e-01 6.067085e-01 -2.376792e-01 6.066112e-01 -2.372747e-01 6.065243e-01 -2.373795e-01 -2.387101e-01 2.702011e-01
3.281250e+11 -2.076041e-01 3.129229e-01 5.763545e-01 -2.803648e-01 6.064556e-01 -2.381621e-01 5.763993e-01 -2.803800e-01 -2.074672e-01 3.131399e-01 6.064235e-01 -2.382463e-01 6.063309e-01 -2.378380e-01 6.062436e-01 -2.379428e-01 -2.382781e-01 2.707896e-01
3.290000e+11 -2.070440e-01 3.135647e-01 5.759442e-01 -2.809851e-01 6.061700e-01 -2.387284e-01 5.759892e-01 -2.810004e-01 -2.069066e-01 3.137820e-01 6.061378e-01 -2.388127e-01 6.060502e-01 -2.384010e-01 6.059625e-01 -2.385059e-01 -2.378453e-01 2.713769e-01
3.298750e+11 -2.064830e-01 3.142055e-01 5.755333e-01 -2.816049e-01 6.058837e-01 -2.392939e-01 5.755784e-01 -2.816204e-01 -2.063449e-01 3.144231e-01 6.058513e-01 -2.393785e-01 6.057690e-01 -2.389637e-01 6.056809e-01 -2.390687e-01 -2.374116e-01 2.719631e-01
3.307500e+11 -2.059210e-01 3.148455e-01 5.751216e-01 -2.822242e-01 6.055967e-01 -2.398587e-01 5.751669e-01 -2.822399e-01 -2.057823e-01 3.150633e-01 6.055642e-01 -2.399435e-01 6.054873e-01 -2.395261e-01 6.053988e-01 -2.396312e-01 -2.369770e-01 2.725482e-01
3.316250e+11 -2.053580e-01 3.154845e-01 5.747091e-01 -2.828431e-01 6.053091e-01 -2.404228e-01 5.747546e-01 -2.828590e-01 -2.052187e-01 3.157025e-01 6.052763e-01 -2.405077e-01 6.052051e-01 -2.400883e-01 6.051162e-01 -2.401935e-01 -2.365416e-01 2.731321e-01
3.325000e+11 -2.047939e-01 3.161225e-01 5.742958e-01 -2.834615e-01 6.050207e-01 -2.409862e-01 5.743414e-01 -2.834776e-01 -2.046540e-01 3.163409e-01 6.049878e-01 -2.410713e-01 6.049224e-01 -2.406502e-01 6.048331e-01 -2.407555e-01 -2.361054e-01 2.737149e-01
3.333750e+11 -2.042288e-01 3.167597e-01 5.738816e-01 -2.840795e-01 6.047318e-01 -2.415488e-01 5.739274e-01 -2.840958e-01 -2.040883e-01 3.169783e-01 6.046987e-01 -2.416341e-01 6.046392e-01 -2.412120e-01 6.045495e-01 -2.413174e-01 -2.356685e-01 2.742966e-01
3.342500e+11 -2.036625e-01 3.173960e-01 5.734665e-01 -2.846971e-01 6.044423e-01 -2.421107e-01 5.735125e-01 -2.847135e-01 -2.035215e-01 3.176148e-01 6.044090e-01 -2.421961e-01 6.043554e-01 -2.417736e-01 6.042653e-01 -2.418790e-01 -2.352308e-01 2.748772e-01
3.351250e+11 -2.030952e-01 3.180313e-01 5.730505e-01 -2.853142e-01 6.041521e-01 -2.426719e-01 5.730967e-01 -2.853308e-01 -2.029535e-01 3.182504e-01 6.041188e-01 -2.427575e-01 6.040710e-01 -2.423349e-01 6.039805e-01 -2.424405e-01 -2.347924e-01 2.754566e-01
3.360000e+11 -2.025266e-01 3.186657e-01 5.726335e-01 -2.859309e-01 6.038615e-01 -2.432323e-01 5.726798e-01 -2.859477e-01 -2.023843e-01 3.188851e-01 6.038279e-01 -2.433181e-01 6.037860e-01 -2.428962e-01 6.036951e-01 -2.430018e-01 -2.343533e-01 2.760349e-01
3.368750e+11 -2.019569e-01 3.192992e-01 5.722155e-01 -2.865471e-01 6.035703e-01 -2.437920e-01 5.722620e-01 -2.865641e-01 -2.018140e-01 3.195188e-01 6.035366e-01 -2.438779e-01 6.035004e-01 -2.434572e-01 6.034091e-01 -2.435630e-01 -2.339135e-01 2.766122e-01
3.377500e+11 -2.013859e-01 3.199317e-01 5.717964e-01 -2.871629e-01 6.032787e-01 -2.443510e-01 5.718431e-01 -2.871801e-01 -2.012424e-01 3.201516e-01 6.032448e-01 -2.444371e-01 6.032142e-01 -2.440182e-01 6.031225e-01 -2.441240e-01 -2.334731e-01 2.771884e-01
3.386250e+11 -2.008137e-01 3.205633e-01 5.713763e-01 -2.877782e-01 6.029866e-01 -2.449093e-01 5.714231e-01 -2.877956e-01 -2.006696e-01 3.207835e-01 6.029525e-01 -2.449956e-01 6.029272e-01 -2.445790e-01 6.028352e-01 -2.446848e-01 -2.330322e-01 2.777636e-01
3.395000e+11 -2.002402e-01 3.211939e-01 5.709550e-01 -2.883931e-01 6.026940e-01 -2.454669e-01 5.710020e-01 -2.884107e-01 -2.000955e-01 3.214143e-01 6.026599e-01 -2.455534e-01 6.026396e-01 -2.451396e-01 6.025471e-01 -2.452456e-01 -2.325906e-01 2.783377e-01
3.403750e+11 -1.996654e-01 3.218235e-01 5.705325e-01 -2.890074e-01 6.024011e-01 -2.460239e-01 5.705797e-01 -2.890252e-01 -1.995200e-01 3.220442e-01 6.023668e-01 -2.461105e-01 6.023512e-01 -2.457002e-01 6.022584e-01 -2.458062e-01 -2.321485e-01 2.789109e-01
3.412500e+11 -1.990892e-01 3.224521e-01 5.701088e-01 -2.896213e-01 6.021078e-01 -2.465802e-01 5.701562e-01 -2.896392e-01 -1.989432e-01 3.226730e-01 6.020733e-01 -2.466670e-01 6.020621e-01 -2.462606e-01 6.019688e-01 -2.463667e-01 -2.317058e-01 2.794831e-01
3.421250e+11 -1.985117e-01 3.230797e-01 5.696839e-01 -2.902345e-01 6.018142e-01 -2.471360e-01 5.697314e-01 -2.902527e-01 -1.983651e-01 3.233008e-01 6.017795e-01 -2.472229e-01 6.017722e-01 -2.468209e-01 6.016785e-01 -2.469271e-01 -2.312627e-01 2.800544e-01
3.430000e+11 -1.979327e-01 3.237061e-01 5.692577e-01 -2.908472e-01 6.015203e-01 -2.476911e-01 5.693054e-01 -2.908656e-01 -1.977856e-01 3.239275e-01 6.014854e-01 -2.477783e-01 6.014814e-01 -2.473811e-01 6.013874e-01 -2.474873e-01 -2.308190e-01 2.806248e-01
3.438750e+11 -1.973524e-01 3.243315e-01 5.688302e-01 -2.914593e-01 6.012260e-01 -2.482457e-01 5.688781e-01 -2.914779e-01 -1.972047e-01 3.245531e-01 6.011910e-01 -2.483330e-01 6.011899e-01 -2.479411e-01 6.010954e-01 -2.480474e-01 -2.303749e-01 2.811943e-01
3.447500e+11 -1.967707e-01 3.249557e-01 5.684014e-01 -2.920707e-01 6.009315e-01 -2.487998e-01 5.684494e-01 -2.920895e-01 -1.966223e-01 3.251776e-01 6.008964e-01 -2.488873e-01 6.008974e-01 -2.485010e-01 6.008025e-01 -2.486074e-01 -2.299303e-01 2.817631e-01
3.456250e+11 -1.961876e-01 3.255787e-01 5.679712e-01 -2.926815e-01 6.006368e-01 -2.493535e-01 5.680194e-01 -2.927005e-01 -1.960386e-01 3.258008e-01 6.006015e-01 -2.494411e-01 6.006041e-01 -2.490607e-01 6.005088e-01 -2.491672e-01 -2.294852e-01 2.823312e-01
3.465000e+11 -1.956031e-01 3.262005e-01 5.675397e-01 -2.932915e-01 6.003418e-01 -2.499067e-01 5.675880e-01 -2.933107e-01 -1.954534e-01 3.264229e-01 6.003064e-01 -2.499945e-01 6.003098e-01 -2.496203e-01 6.002141e-01 -2.497269e-01 -2.290397e-01 2.828985e-01
3.473750e+11 -1.950171e-01 3.268211e-01 5.671068e-01 -2.939007e-01 6.000467e-01 -2.504595e-01 5.671553e-01 -2.939201e-01 -1.948668e-01 3.270437e-01 6.000110e-01 -2.505475e-01 6.000147e-01 -2.501797e-01 5.999186e-01 -2.502863e-01 -2.285938e-01 2.834652e-01
3.482500e+11 -1.944297e-01 3.274404e-01 5.666725e-01 -2.945091e-01 5.997513e-01 -2.510120e-01 5.667212e-01 -2.945287e-01 -1.942788e-01 3.276632e-01 5.997155e-01 -2.511002e-01 5.997185e-01 -2.507389e-01 5.996220e-01 -2.508456e-01 -2.281474e-01 2.840313e-01
3.491250e+11 -1.938409e-01 3.280583e-01 5.662369e-01 -2.951166e-01 5.994557e-01 -2.515643e-01 5.662857e-01 -2.951364e-01 -1.936895e-01 3.282814e-01 5.994198e-01 -2.516526e-01 5.994214e-01 -2.512979e-01 5.993245e-01 -2.514047e-01 -2.277005e-01 2.845969e-01
3.500000e+11 -1.932508e-01 3.286749e-01 5.657998e-01 -2.957231e-01 5.991600e-01 -2.521163e-01 5.658488e-01 -2.957431e-01 -1.930987e-01 3.288982e-01 5.991239e-01 -2.522047e-01 5.991233e-01 -2.518567e-01 5.990260e-01 -2.519635e-01 -2.272532e-01 2.851620e-01

View File

@ -1,76 +1,76 @@
% time-domain current integration by openEMS v0.0.35-108-gc651cce @Wed May 21 16:07:12 2025
% start-coordinates: (-6.4735e-05,-2.62176e-05,0.00016018) m -> [24,56,58]
% stop-coordinates: (-6.4035e-05,-2.302e-05,0.00016018) m -> [27,67,58]
% time-domain current integration by openEMS v0.0.36-93-g7b9cd51 @Tue Jan 20 09:58:40 2026
% start-coordinates: (-6.4735e-05,-2.62176e-05,0.000159198) m -> [24,56,27]
% stop-coordinates: (-6.4035e-05,-2.302e-05,0.000159198) m -> [27,67,27]
% t/s current
1.58035417582e-16 0
3.57002008318e-13 -3.32401363379e-11
7.13845981218e-13 -4.26827219402e-11
1.07068995412e-12 -1.15469630385e-11
1.42753392702e-12 1.28272045763e-10
1.78437789992e-12 4.92824114851e-10
2.14122187282e-12 1.22304888439e-09
2.49806584572e-12 2.40535791285e-09
2.85490981862e-12 3.90713772447e-09
3.21175379152e-12 5.14581577349e-09
3.56859776442e-12 4.88882268002e-09
3.92544173732e-12 1.27088128909e-09
4.28228571022e-12 -7.75372743789e-09
4.63912968312e-12 -2.34194459381e-08
4.99597365602e-12 -4.47970407436e-08
5.35281762892e-12 -6.76611406902e-08
5.70966160182e-12 -8.43924468086e-08
6.06650557472e-12 -8.55964827906e-08
6.42334954762e-12 -6.34122230281e-08
6.78019352052e-12 -1.54920432038e-08
7.13703749342e-12 5.2177583143e-08
7.49388146632e-12 1.25397065176e-07
7.85072543922e-12 1.85489810178e-07
8.20756941213e-12 2.1558149399e-07
8.56441338503e-12 2.06850316431e-07
8.92125735793e-12 1.61934281095e-07
9.27810133083e-12 9.38859727739e-08
9.63494530373e-12 2.11816733042e-08
9.99178927663e-12 -3.88927183792e-08
1.03486332495e-11 -7.55960769538e-08
1.07054772224e-11 -8.68508323038e-08
1.10623211953e-11 -7.78715190108e-08
1.14191651682e-11 -5.76044136835e-08
1.17760091411e-11 -3.48938407058e-08
1.2132853114e-11 -1.58921711346e-08
1.24896970869e-11 -3.26074944823e-09
1.28465410598e-11 3.17439385888e-09
1.32033850327e-11 5.11991604668e-09
1.35602290056e-11 4.59640991934e-09
1.39170729785e-11 3.19178039554e-09
1.42739169514e-11 1.82721904274e-09
1.46307609243e-11 8.60494175914e-10
1.49876048972e-11 3.10181963448e-10
1.53444488701e-11 5.83031470325e-11
1.5701292843e-11 -2.53698624608e-11
1.60581368159e-11 -3.48647742621e-11
1.64149807888e-11 -2.30279389307e-11
1.67718247617e-11 -1.98810464619e-11
1.71286687346e-11 -2.10201248768e-11
1.74855127075e-11 -2.22916129999e-11
1.78423566804e-11 -2.3029574775e-11
1.81992006533e-11 -2.20328113393e-11
1.85560446262e-11 -2.08315222711e-11
1.89128885991e-11 -2.02046088194e-11
1.9269732572e-11 -2.10653022803e-11
1.96265765449e-11 -2.2743310707e-11
1.99834205178e-11 -2.37191030705e-11
2.03402644907e-11 -2.36548575866e-11
2.06971084636e-11 -2.20733206019e-11
2.10539524365e-11 -2.11111440829e-11
2.14107964094e-11 -2.11820110063e-11
2.17676403823e-11 -2.24418469918e-11
2.21244843552e-11 -2.36605336018e-11
2.24813283281e-11 -2.42407240114e-11
2.2838172301e-11 -2.34206491007e-11
2.31950162739e-11 -2.222480186e-11
2.35518602468e-11 -2.16637437156e-11
2.39087042197e-11 -2.22931759858e-11
2.42655481926e-11 -2.38845696693e-11
2.46223921655e-11 -2.46983145741e-11
2.49792361384e-11 -2.45045025937e-11
2.53360801113e-11 -2.32521710219e-11
1.64432003993e-16 0
3.56981880668e-13 -3.21050755425e-11
7.13799329332e-13 -4.12303212405e-11
1.070616778e-12 -1.11174637205e-11
1.42743422666e-12 1.25299146059e-10
1.78425167532e-12 4.79451756075e-10
2.14106912399e-12 1.18856258169e-09
2.49788657265e-12 2.3361650392e-09
2.85470402131e-12 3.79328213285e-09
3.21152146998e-12 4.99256636033e-09
3.56833891864e-12 4.73898476017e-09
3.92515636731e-12 1.22102938871e-09
4.28197381597e-12 -7.54374696044e-09
4.63879126463e-12 -2.27487717552e-08
4.9956087133e-12 -4.34898517199e-08
5.35242616196e-12 -6.56628316165e-08
5.70924361063e-12 -8.18752710074e-08
6.06606105929e-12 -8.30157560472e-08
6.42287850795e-12 -6.14666433307e-08
6.77969595662e-12 -1.49607455313e-08
7.13651340528e-12 5.0687489761e-08
7.49333085394e-12 1.21700892919e-07
7.85014830261e-12 1.79967528879e-07
8.20696575127e-12 2.0912762011e-07
8.56378319994e-12 2.00634232783e-07
8.9206006486e-12 1.57053264616e-07
9.27741809726e-12 9.104569898e-08
9.63423554593e-12 2.05289421018e-08
9.99105299459e-12 -3.77352833425e-08
1.03478704433e-11 -7.33331617653e-08
1.07046878919e-11 -8.42509280119e-08
1.10615053406e-11 -7.55441291744e-08
1.14183227892e-11 -5.58881865231e-08
1.17751402379e-11 -3.38604237982e-08
1.21319576866e-11 -1.54262398411e-08
1.24887751352e-11 -3.16964721137e-09
1.28455925839e-11 3.07687320067e-09
1.32024100326e-11 4.9673714031e-09
1.35592274812e-11 4.46182824021e-09
1.39160449299e-11 3.09993475334e-09
1.42728623786e-11 1.77620362862e-09
1.46296798272e-11 8.37640734552e-10
1.49864972759e-11 3.0268426654e-10
1.53433147245e-11 5.77589850947e-11
1.57001321732e-11 -2.3969531221e-11
1.60569496219e-11 -3.31697308509e-11
1.64137670705e-11 -2.19833613119e-11
1.67705845192e-11 -1.89672999529e-11
1.71274019679e-11 -2.02178621067e-11
1.74842194165e-11 -2.17990781676e-11
1.78410368652e-11 -2.20112799515e-11
1.81978543139e-11 -2.13147208217e-11
1.85546717625e-11 -1.99451358207e-11
1.89114892112e-11 -1.96138001674e-11
1.92683066599e-11 -2.04329053677e-11
1.96251241085e-11 -2.2110884304e-11
1.99819415572e-11 -2.29963582898e-11
2.03387590058e-11 -2.2797461835e-11
2.06955764545e-11 -2.16141965437e-11
2.10523939032e-11 -2.0539424328e-11
2.14092113518e-11 -2.05958375354e-11
2.17660288005e-11 -2.18449321132e-11
2.21228462492e-11 -2.32420523799e-11
2.24796636978e-11 -2.36691968108e-11
2.28364811465e-11 -2.28507265193e-11
2.31932985952e-11 -2.15785254248e-11
2.35501160438e-11 -2.10291489083e-11
2.39069334925e-11 -2.16294534366e-11
2.42637509411e-11 -2.30400264839e-11
2.46205683898e-11 -2.40307895111e-11
2.49773858385e-11 -2.37629534106e-11
2.53342032871e-11 -2.27534328184e-11

View File

@ -1,76 +1,76 @@
% time-domain current integration by openEMS v0.0.35-108-gc651cce @Wed May 21 16:07:12 2025
% start-coordinates: (-4.5205e-05,-2.62176e-05,0.00016018) m -> [92,56,58]
% stop-coordinates: (-4.4505e-05,-2.302e-05,0.00016018) m -> [95,67,58]
% time-domain current integration by openEMS v0.0.36-93-g7b9cd51 @Tue Jan 20 09:58:40 2026
% start-coordinates: (-4.5205e-05,-2.62176e-05,0.000159198) m -> [92,56,27]
% stop-coordinates: (-4.4505e-05,-2.302e-05,0.000159198) m -> [95,67,27]
% t/s current
1.58035417582e-16 0
3.57002008318e-13 1.5002360465e-11
7.13845981218e-13 2.1680070933e-11
1.07068995412e-12 1.50565723084e-11
1.42753392702e-12 -3.39342443034e-11
1.78437789992e-12 -1.77420148018e-10
2.14122187282e-12 -4.85599727096e-10
2.49806584572e-12 -1.01879549241e-09
2.85490981862e-12 -1.75398029434e-09
3.21175379152e-12 -2.47559706068e-09
3.56859776442e-12 -2.6588204971e-09
3.92544173732e-12 -1.43508538386e-09
4.28228571022e-12 2.25162977152e-09
4.63912968312e-12 9.2148422226e-09
4.99597365602e-12 1.93671709781e-08
5.35281762892e-12 3.1068321249e-08
5.70966160182e-12 4.0882365937e-08
6.06650557472e-12 4.41421477149e-08
6.42334954762e-12 3.64304035827e-08
6.78019352052e-12 1.56018611364e-08
7.13703749342e-12 -1.65126348151e-08
7.49388146632e-12 -5.36968762788e-08
7.85072543922e-12 -8.67756284606e-08
8.20756941213e-12 -1.06589581605e-07
8.56441338503e-12 -1.0733743494e-07
8.92125735793e-12 -8.8815198751e-08
9.27810133083e-12 -5.6490044642e-08
9.63494530373e-12 -1.93776017454e-08
9.99178927663e-12 1.32694788491e-08
1.03486332495e-11 3.49871562833e-08
1.07054772224e-11 4.36437659346e-08
1.10623211953e-11 4.11378699994e-08
1.14191651682e-11 3.17606208e-08
1.17760091411e-11 2.01817265122e-08
1.2132853114e-11 9.92816850953e-09
1.24896970869e-11 2.75605516187e-09
1.28465410598e-11 -1.14805387419e-09
1.32033850327e-11 -2.54057352933e-09
1.35602290056e-11 -2.46094700174e-09
1.39170729785e-11 -1.78697201481e-09
1.42739169514e-11 -1.06188280391e-09
1.46307609243e-11 -5.20837484252e-10
1.49876048972e-11 -1.99658553579e-10
1.53444488701e-11 -4.62897081777e-11
1.5701292843e-11 8.71659775609e-12
1.60581368159e-11 1.79492670727e-11
1.64149807888e-11 1.24794055298e-11
1.67718247617e-11 9.27510932641e-12
1.71286687346e-11 1.01709283357e-11
1.74855127075e-11 1.10770706843e-11
1.78423566804e-11 1.14389496139e-11
1.81992006533e-11 1.07016964734e-11
1.85560446262e-11 9.85042603041e-12
1.89128885991e-11 9.58953663005e-12
1.9269732572e-11 1.01905168332e-11
1.96265765449e-11 1.13053394771e-11
1.99834205178e-11 1.18830674467e-11
2.03402644907e-11 1.14333568654e-11
2.06971084636e-11 1.05975297982e-11
2.10539524365e-11 9.84451235808e-12
2.14107964094e-11 1.03430632115e-11
2.17676403823e-11 1.10844666779e-11
2.21244843552e-11 1.21155334029e-11
2.24813283281e-11 1.2076948816e-11
2.2838172301e-11 1.11743600484e-11
2.31950162739e-11 1.02675029937e-11
2.35518602468e-11 1.04323060607e-11
2.39087042197e-11 1.10146596705e-11
2.42655481926e-11 1.21176410919e-11
2.46223921655e-11 1.25236938875e-11
2.49792361384e-11 1.19218012198e-11
2.53360801113e-11 1.09201900994e-11
1.64432003993e-16 0
3.56981880668e-13 1.44976452718e-11
7.13799329332e-13 2.10382718191e-11
1.070616778e-12 1.46968964776e-11
1.42743422666e-12 -3.23192063389e-11
1.78425167532e-12 -1.71263572768e-10
2.14106912399e-12 -4.69818961513e-10
2.49788657265e-12 -9.86260406677e-10
2.85470402131e-12 -1.69980252096e-09
3.21152146998e-12 -2.39989472739e-09
3.56833891864e-12 -2.58084331684e-09
3.92515636731e-12 -1.40077660582e-09
4.28197381597e-12 2.1656745286e-09
4.63879126463e-12 8.90926532549e-09
4.9956087133e-12 1.87505939664e-08
5.35242616196e-12 3.01034219774e-08
5.70924361063e-12 3.9640745797e-08
6.06606105929e-12 4.28376338846e-08
6.42287850795e-12 3.54024152216e-08
6.77969595662e-12 1.5242699547e-08
7.13651340528e-12 -1.5883784954e-08
7.49333085394e-12 -5.19589669068e-08
7.85014830261e-12 -8.40899119225e-08
8.20696575127e-12 -1.03381040617e-07
8.56378319994e-12 -1.0418605001e-07
8.9206006486e-12 -8.62832081339e-08
9.27741809726e-12 -5.49561711694e-08
9.63423554593e-12 -1.89453714938e-08
9.99105299459e-12 1.27664154803e-08
1.03478704433e-11 3.3892451512e-08
1.07046878919e-11 4.23442259034e-08
1.10615053406e-11 3.99504074267e-08
1.14183227892e-11 3.08688683504e-08
1.17751402379e-11 1.96334966063e-08
1.21319576866e-11 9.67175139976e-09
1.24887751352e-11 2.69685407339e-09
1.28455925839e-11 -1.10473996617e-09
1.32024100326e-11 -2.46514941793e-09
1.35592274812e-11 -2.39234854149e-09
1.39160449299e-11 -1.73911085533e-09
1.42728623786e-11 -1.03451580635e-09
1.46296798272e-11 -5.08544650835e-10
1.49864972759e-11 -1.95435084782e-10
1.53433147245e-11 -4.55636153807e-11
1.57001321732e-11 8.25766191537e-12
1.60569496219e-11 1.72120078606e-11
1.64137670705e-11 1.1868784601e-11
1.67705845192e-11 9.13696722449e-12
1.71274019679e-11 9.74328950853e-12
1.74842194165e-11 1.06137520647e-11
1.78410368652e-11 1.08155455078e-11
1.81978543139e-11 1.03540153881e-11
1.85546717625e-11 9.50350475398e-12
1.89114892112e-11 9.41367470086e-12
1.92683066599e-11 9.89981187305e-12
1.96251241085e-11 1.07481454292e-11
1.99819415572e-11 1.14497569412e-11
2.03387590058e-11 1.09338102808e-11
2.06955764545e-11 1.012240812e-11
2.10523939032e-11 9.55958315979e-12
2.14092113518e-11 9.94244183511e-12
2.17660288005e-11 1.07365340576e-11
2.21228462492e-11 1.16757306948e-11
2.24796636978e-11 1.17324656934e-11
2.28364811465e-11 1.08366805113e-11
2.31932985952e-11 9.95606114912e-12
2.35501160438e-11 9.97551433818e-12
2.39069334925e-11 1.07031761926e-11
2.42637509411e-11 1.18632013935e-11
2.46205683898e-11 1.21078563842e-11
2.49773858385e-11 1.13688893369e-11
2.53342032871e-11 1.05356105784e-11

View File

@ -1,76 +1,76 @@
% time-domain current integration by openEMS v0.0.35-108-gc651cce @Wed May 21 16:07:12 2025
% start-coordinates: (-5.62176e-05,-3.622e-05,0.00016018) m -> [54,24,58]
% stop-coordinates: (-5.302e-05,-3.552e-05,0.00016018) m -> [65,27,58]
% time-domain current integration by openEMS v0.0.36-93-g7b9cd51 @Tue Jan 20 09:58:40 2026
% start-coordinates: (-5.62176e-05,-3.622e-05,0.000159198) m -> [54,24,27]
% stop-coordinates: (-5.302e-05,-3.552e-05,0.000159198) m -> [65,27,27]
% t/s current
1.58035417582e-16 0
3.57002008318e-13 1.62728632652e-11
7.13845981218e-13 2.23327727839e-11
1.07068995412e-12 1.30059123193e-11
1.42753392702e-12 -4.23324326981e-11
1.78437789992e-12 -1.98753014047e-10
2.14122187282e-12 -5.29328303411e-10
2.49806584572e-12 -1.0897373004e-09
2.85490981862e-12 -1.84448878393e-09
3.21175379152e-12 -2.550662348e-09
3.56859776442e-12 -2.64500377156e-09
3.92544173732e-12 -1.22072696396e-09
4.28228571022e-12 2.78878742321e-09
4.63912968312e-12 1.01493506932e-08
4.99597365602e-12 2.06451655771e-08
5.35281762892e-12 3.24393525375e-08
5.70966160182e-12 4.18945340641e-08
6.06650557472e-12 4.42387673161e-08
6.42334954762e-12 3.51443176783e-08
6.78019352052e-12 1.27923547311e-08
7.13703749342e-12 -2.04954844207e-08
7.49388146632e-12 -5.80188235233e-08
7.85072543922e-12 -9.03422758824e-08
8.20756941213e-12 -1.08412180566e-07
8.56441338503e-12 -1.06900294838e-07
8.92125735793e-12 -8.62712212779e-08
9.27810133083e-12 -5.25963592679e-08
9.63494530373e-12 -1.52037760159e-08
9.99178927663e-12 1.67258491501e-08
1.03486332495e-11 3.71099986296e-08
1.07054772224e-11 4.43151719765e-08
1.10623211953e-11 4.06572411293e-08
1.14191651682e-11 3.06377430093e-08
1.17760091411e-11 1.89189108823e-08
1.2132853114e-11 8.87038620334e-09
1.24896970869e-11 2.05275907383e-09
1.28465410598e-11 -1.5069334669e-09
1.32033850327e-11 -2.65079913575e-09
1.35602290056e-11 -2.43394038257e-09
1.39170729785e-11 -1.7104327954e-09
1.42739169514e-11 -9.87241177697e-10
1.46307609243e-11 -4.68162841827e-10
1.49876048972e-11 -1.69818270557e-10
1.53444488701e-11 -3.23349090559e-11
1.5701292843e-11 1.39929821202e-11
1.60581368159e-11 1.97191863532e-11
1.64149807888e-11 1.30521825986e-11
1.67718247617e-11 1.00900902217e-11
1.71286687346e-11 1.03369656584e-11
1.74855127075e-11 1.10013049018e-11
1.78423566804e-11 1.15151941801e-11
1.81992006533e-11 1.17060423854e-11
1.85560446262e-11 1.11534019867e-11
1.89128885991e-11 1.05404964271e-11
1.9269732572e-11 1.04566971401e-11
1.96265765449e-11 1.09032505247e-11
1.99834205178e-11 1.14426922798e-11
2.03402644907e-11 1.18443501534e-11
2.06971084636e-11 1.17865673818e-11
2.10539524365e-11 1.13071331811e-11
2.14107964094e-11 1.09594399528e-11
2.17676403823e-11 1.09148289365e-11
2.21244843552e-11 1.14104463725e-11
2.24813283281e-11 1.20035049608e-11
2.2838172301e-11 1.21353040464e-11
2.31950162739e-11 1.21620855748e-11
2.35518602468e-11 1.15953002408e-11
2.39087042197e-11 1.11054464236e-11
2.42655481926e-11 1.10293024713e-11
2.46223921655e-11 1.16293025557e-11
2.49792361384e-11 1.23677196956e-11
2.53360801113e-11 1.24685270789e-11
1.64432003993e-16 0
3.56981880668e-13 1.56401332857e-11
7.13799329332e-13 2.16485128435e-11
1.070616778e-12 1.2949890292e-11
1.42743422666e-12 -4.07868044894e-11
1.78425167532e-12 -1.92197507909e-10
2.14106912399e-12 -5.11555076077e-10
2.49788657265e-12 -1.05461128719e-09
2.85470402131e-12 -1.78618253521e-09
3.21152146998e-12 -2.47238518547e-09
3.56833891864e-12 -2.56808019294e-09
3.92515636731e-12 -1.19529230957e-09
4.28197381597e-12 2.68159028316e-09
4.63879126463e-12 9.80743397605e-09
4.9956087133e-12 1.99793177558e-08
5.35242616196e-12 3.1421915736e-08
5.70924361063e-12 4.06157347754e-08
6.06606105929e-12 4.29323137041e-08
6.42287850795e-12 3.41689840866e-08
6.77969595662e-12 1.25436843135e-08
7.13651340528e-12 -1.97117486778e-08
7.49333085394e-12 -5.61157769141e-08
7.85014830261e-12 -8.75222738728e-08
8.20696575127e-12 -1.05138283857e-07
8.56378319994e-12 -1.0377097226e-07
8.9206006486e-12 -8.38405824766e-08
9.27741809726e-12 -5.12133127017e-08
9.63423554593e-12 -1.49307801678e-08
9.99105299459e-12 1.6093091304e-08
1.03478704433e-11 3.59369174419e-08
1.07046878919e-11 4.29925499645e-08
1.10615053406e-11 3.94896773059e-08
1.14183227892e-11 2.9789450906e-08
1.17751402379e-11 1.84177579854e-08
1.21319576866e-11 8.65310934017e-09
1.24887751352e-11 2.01919347909e-09
1.28455925839e-11 -1.45112499794e-09
1.32024100326e-11 -2.57164023409e-09
1.35592274812e-11 -2.36624608796e-09
1.39160449299e-11 -1.66528868473e-09
1.42728623786e-11 -9.62624646661e-10
1.46296798272e-11 -4.57329590864e-10
1.49864972759e-11 -1.66652816547e-10
1.53433147245e-11 -3.21840262774e-11
1.57001321732e-11 1.3159425806e-11
1.60569496219e-11 1.89004159545e-11
1.64137670705e-11 1.25718801688e-11
1.67705845192e-11 9.83550220435e-12
1.71274019679e-11 1.0009435121e-11
1.74842194165e-11 1.06978887554e-11
1.78410368652e-11 1.10503047684e-11
1.81978543139e-11 1.12710205752e-11
1.85546717625e-11 1.08764282303e-11
1.89114892112e-11 1.03772433355e-11
1.92683066599e-11 1.01089839624e-11
1.96251241085e-11 1.0485235076e-11
1.99819415572e-11 1.11771538205e-11
2.03387590058e-11 1.15779261178e-11
2.06955764545e-11 1.14256824488e-11
2.10523939032e-11 1.09996300263e-11
2.14092113518e-11 1.0498863931e-11
2.17660288005e-11 1.05470319978e-11
2.21228462492e-11 1.09455309399e-11
2.24796636978e-11 1.15113474308e-11
2.28364811465e-11 1.1926273337e-11
2.31932985952e-11 1.17388659557e-11
2.35501160438e-11 1.11350199894e-11
2.39069334925e-11 1.08793920053e-11
2.42637509411e-11 1.08657284559e-11
2.46205683898e-11 1.13724194992e-11
2.49773858385e-11 1.18323987761e-11
2.53342032871e-11 1.19867189091e-11

View File

@ -1,76 +1,76 @@
% time-domain voltage integration by openEMS v0.0.35-108-gc651cce @Wed May 21 16:07:12 2025
% start-coordinates: (-6.42725e-05,-2.452e-05,0.00015727) m -> [26,62,53]
% stop-coordinates: (-6.42725e-05,-2.452e-05,0.00016498) m -> [26,62,63]
% time-domain voltage integration by openEMS v0.0.36-93-g7b9cd51 @Tue Jan 20 09:58:40 2026
% start-coordinates: (-6.42725e-05,-2.452e-05,0.00015727) m -> [26,62,24]
% stop-coordinates: (-6.42725e-05,-2.452e-05,0.00016498) m -> [26,62,32]
% t/s voltage
0 -0
3.568439729e-13 -1.40548766722e-09
7.13687945801e-13 -1.13371022639e-09
1.0705319187e-12 1.21941588771e-09
1.4273758916e-12 8.67570318364e-09
1.7842198645e-12 2.54052996418e-08
2.1410638374e-12 5.52716992175e-08
2.4979078103e-12 9.77822796067e-08
2.8547517832e-12 1.41508240237e-07
3.2115957561e-12 1.56937654872e-07
3.568439729e-12 9.37422703906e-08
3.9252837019e-12 -1.10746472881e-07
4.2821276748e-12 -5.06189406835e-07
4.6389716477e-12 -1.08935296694e-06
4.9958156206e-12 -1.76385614026e-06
5.35265959351e-12 -2.32458335603e-06
5.70950356641e-12 -2.4921188384e-06
6.06634753931e-12 -2.00465653677e-06
6.42319151221e-12 -7.43497729161e-07
6.78003548511e-12 1.16290769725e-06
7.13687945801e-12 3.31864482916e-06
7.49372343091e-12 5.15760319786e-06
7.85056740381e-12 6.13595209131e-06
8.20741137671e-12 5.94127361353e-06
8.56425534961e-12 4.62169948889e-06
8.92109932251e-12 2.57037185492e-06
9.27794329541e-12 3.71477256067e-07
9.63478726831e-12 -1.41891793604e-06
9.99163124121e-12 -2.4570703232e-06
1.03484752141e-11 -2.68727747255e-06
1.0705319187e-11 -2.29579684685e-06
1.10621631599e-11 -1.58731910105e-06
1.14190071328e-11 -8.52325793943e-07
1.17758511057e-11 -2.8030689414e-07
1.21326950786e-11 6.19153581738e-08
1.24895390515e-11 2.00890995394e-07
1.28463830244e-11 2.07410606023e-07
1.32032269973e-11 1.53689958537e-07
1.35600709702e-11 9.01812646781e-08
1.39169149431e-11 4.1413780516e-08
1.4273758916e-11 1.27674462114e-08
1.46306028889e-11 -4.9418580339e-11
1.49874468618e-11 -3.67656810552e-09
1.53442908347e-11 -3.37167950504e-09
1.57011348076e-11 -2.14083148431e-09
1.60579787805e-11 -1.15862250696e-09
1.64148227534e-11 -7.17547217824e-10
1.67716667263e-11 -8.82847347311e-10
1.71285106992e-11 -8.26261069981e-10
1.74853546721e-11 -7.64643643542e-10
1.7842198645e-11 -7.26070481516e-10
1.81990426179e-11 -7.74260084865e-10
1.85558865908e-11 -8.35505022806e-10
1.89127305637e-11 -8.66230778079e-10
1.92695745366e-11 -8.27062651004e-10
1.96264185095e-11 -7.42047499835e-10
1.99832624824e-11 -6.93042253794e-10
2.03401064553e-11 -6.94373806717e-10
2.06969504282e-11 -7.71677811928e-10
2.10537944011e-11 -8.21741516846e-10
2.1410638374e-11 -8.20237702412e-10
2.17674823469e-11 -7.57925595549e-10
2.21243263198e-11 -6.94439686311e-10
2.24811702927e-11 -6.66568206881e-10
2.28380142656e-11 -7.04980383098e-10
2.31948582385e-11 -7.67543428121e-10
2.35517022114e-11 -7.96619176874e-10
2.39085461843e-11 -7.64938543063e-10
2.42653901572e-11 -6.84767260256e-10
2.46222341301e-11 -6.43126484359e-10
2.4979078103e-11 -6.52909863327e-10
2.53359220759e-11 -7.13787712964e-10
3.56817448664e-13 -1.37311424731e-09
7.13634897328e-13 -1.09667876863e-09
1.07045234599e-12 1.18584934927e-09
1.42726979466e-12 8.3902476633e-09
1.78408724332e-12 2.46116754754e-08
2.14090469198e-12 5.35660817924e-08
2.49772214065e-12 9.47713649779e-08
2.85453958931e-12 1.37160284019e-07
3.21135703797e-12 1.52197925374e-07
3.56817448664e-12 9.10215249839e-08
3.9249919353e-12 -1.07000904581e-07
4.28180938397e-12 -4.90134230091e-07
4.63862683263e-12 -1.05534289929e-06
4.99544428129e-12 -1.70930627519e-06
5.35226172996e-12 -2.25339363169e-06
5.70907917862e-12 -2.41678986868e-06
6.06589662729e-12 -1.94560814748e-06
6.42271407595e-12 -7.24388698359e-07
6.77953152461e-12 1.12291407106e-06
7.13634897328e-12 3.21300022676e-06
7.49316642194e-12 4.99735736526e-06
7.8499838706e-12 5.94853034386e-06
8.20680131927e-12 5.76298427291e-06
8.56361876793e-12 4.48642202855e-06
8.9204362166e-12 2.49912280026e-06
9.27725366526e-12 3.67079408647e-07
9.63407111392e-12 -1.37040898096e-06
9.99088856259e-12 -2.37942110459e-06
1.03477060113e-11 -2.60510806527e-06
1.07045234599e-11 -2.22738319167e-06
1.10613409086e-11 -1.54137761399e-06
1.14181583572e-11 -8.28786337337e-07
1.17749758059e-11 -2.7362328936e-07
1.21317932546e-11 5.88677018243e-08
1.24886107032e-11 1.94229735406e-07
1.28454281519e-11 2.00958743868e-07
1.32022456006e-11 1.49065896515e-07
1.35590630492e-11 8.75163026492e-08
1.39158804979e-11 4.01980466691e-08
1.42726979466e-11 1.23597105883e-08
1.46295153952e-11 -1.00340069586e-10
1.49863328439e-11 -3.61148516648e-09
1.53431502925e-11 -3.31315719304e-09
1.56999677412e-11 -2.10368417131e-09
1.60567851899e-11 -1.15331003775e-09
1.64136026385e-11 -7.1232875154e-10
1.67704200872e-11 -8.75007725998e-10
1.71272375359e-11 -8.15709381985e-10
1.74840549845e-11 -7.34749337761e-10
1.78408724332e-11 -7.15989312977e-10
1.81976898819e-11 -7.50435241725e-10
1.85545073305e-11 -8.18730101076e-10
1.89113247792e-11 -8.41685336012e-10
1.92681422278e-11 -8.04336122012e-10
1.96249596765e-11 -7.216747408e-10
1.99817771252e-11 -6.70377031664e-10
2.03385945738e-11 -6.76016288087e-10
2.06954120225e-11 -7.3759818045e-10
2.10522294712e-11 -7.92116559845e-10
2.14090469198e-11 -7.94168928536e-10
2.17658643685e-11 -7.36017195108e-10
2.21226818172e-11 -6.61642789168e-10
2.24794992658e-11 -6.37468248327e-10
2.28363167145e-11 -6.76043318548e-10
2.31931341632e-11 -7.40170980063e-10
2.35499516118e-11 -7.71297317681e-10
2.39067690605e-11 -7.44271332065e-10
2.42635865091e-11 -6.74480492291e-10
2.46204039578e-11 -6.22819639612e-10
2.49772214065e-11 -6.30778811128e-10
2.53340388551e-11 -6.81513796785e-10

View File

@ -1,76 +1,76 @@
% time-domain voltage integration by openEMS v0.0.35-108-gc651cce @Wed May 21 16:07:12 2025
% start-coordinates: (-4.47425e-05,-2.452e-05,0.00015727) m -> [94,62,53]
% stop-coordinates: (-4.47425e-05,-2.452e-05,0.00016498) m -> [94,62,63]
% time-domain voltage integration by openEMS v0.0.36-93-g7b9cd51 @Tue Jan 20 09:58:40 2026
% start-coordinates: (-4.47425e-05,-2.452e-05,0.00015727) m -> [94,62,24]
% stop-coordinates: (-4.47425e-05,-2.452e-05,0.00016498) m -> [94,62,32]
% t/s voltage
0 -0
3.568439729e-13 -7.47173625054e-10
7.13687945801e-13 -1.08128933932e-09
1.0705319187e-12 -7.64390783309e-10
1.4273758916e-12 1.61679338667e-09
1.7842198645e-12 8.67305424701e-09
2.1410638374e-12 2.38952635456e-08
2.4979078103e-12 5.03332671098e-08
2.8547517832e-12 8.69518255175e-08
3.2115957561e-12 1.23219491055e-07
3.568439729e-12 1.33216276677e-07
3.9252837019e-12 7.38296304093e-08
4.2821276748e-12 -1.07725161236e-07
4.6389716477e-12 -4.52602312961e-07
4.9958156206e-12 -9.57609010754e-07
5.35265959351e-12 -1.54241570982e-06
5.70950356641e-12 -2.03683482169e-06
6.06634753931e-12 -2.20817329932e-06
6.42319151221e-12 -1.83448734248e-06
6.78003548511e-12 -8.05482770261e-07
7.13687945801e-12 7.91542623446e-07
7.49372343091e-12 2.64961241214e-06
7.85056740381e-12 4.31169898718e-06
8.20741137671e-12 5.31830089301e-06
8.56425534961e-12 5.3749251947e-06
8.92109932251e-12 4.46560861178e-06
9.27794329541e-12 2.85893361252e-06
9.63478726831e-12 1.00365951639e-06
9.99163124121e-12 -6.36343180815e-07
1.03484752141e-11 -1.73427935124e-06
1.0705319187e-11 -2.1792721725e-06
1.10621631599e-11 -2.06298574312e-06
1.14190071328e-11 -1.59857763293e-06
1.17758511057e-11 -1.01997265034e-06
1.21326950786e-11 -5.04995714579e-07
1.24895390515e-11 -1.43175400869e-07
1.28463830244e-11 5.4908345648e-08
1.32032269973e-11 1.26485220076e-07
1.35600709702e-11 1.23484861003e-07
1.39169149431e-11 9.00635011014e-08
1.4273758916e-11 5.37199393857e-08
1.46306028889e-11 2.64554139151e-08
1.49874468618e-11 1.02054760753e-08
1.53442908347e-11 2.40644564692e-09
1.57011348076e-11 -4.1125835723e-10
1.60579787805e-11 -9.01099962008e-10
1.64148227534e-11 -6.29677599992e-10
1.67716667263e-11 -4.66165354582e-10
1.71285106992e-11 -5.07963933069e-10
1.74853546721e-11 -5.5323715574e-10
1.7842198645e-11 -5.71835591032e-10
1.81990426179e-11 -5.37465412453e-10
1.85558865908e-11 -4.9645439322e-10
1.89127305637e-11 -4.78006616927e-10
1.92695745366e-11 -5.12593014909e-10
1.96264185095e-11 -5.64795760508e-10
1.99832624824e-11 -5.93826009199e-10
2.03401064553e-11 -5.72835013798e-10
2.06969504282e-11 -5.30044551653e-10
2.10537944011e-11 -4.94057178849e-10
2.1410638374e-11 -5.17378114309e-10
2.17674823469e-11 -5.55999716753e-10
2.21243263198e-11 -6.04615212063e-10
2.24811702927e-11 -6.03521458503e-10
2.28380142656e-11 -5.60846862008e-10
2.31948582385e-11 -5.15101053825e-10
2.35517022114e-11 -5.2035617655e-10
2.39085461843e-11 -5.50478789288e-10
2.42653901572e-11 -6.06066764483e-10
2.46222341301e-11 -6.24157335191e-10
2.4979078103e-11 -5.99245923716e-10
2.53359220759e-11 -5.4752538961e-10
3.56817448664e-13 -7.22175586693e-10
7.13634897328e-13 -1.04603528617e-09
1.07045234599e-12 -7.40560477525e-10
1.42726979466e-12 1.55043874267e-09
1.78408724332e-12 8.40299474447e-09
2.14090469198e-12 2.31717659505e-08
2.49772214065e-12 4.88141804755e-08
2.85453958931e-12 8.43635112879e-08
3.21135703797e-12 1.19519816266e-07
3.56817448664e-12 1.29244066116e-07
3.9249919353e-12 7.17023178609e-08
4.28180938397e-12 -1.04311802307e-07
4.63862683263e-12 -4.3875971123e-07
4.99544428129e-12 -9.28615328633e-07
5.35226172996e-12 -1.49596484533e-06
5.70907917862e-12 -1.97581265127e-06
6.06589662729e-12 -2.14249931219e-06
6.42271407595e-12 -1.78059929823e-06
6.77953152461e-12 -7.83010772665e-07
7.13634897328e-12 7.6588922937e-07
7.49316642194e-12 2.56846911384e-06
7.8499838706e-12 4.18157114268e-06
8.20680131927e-12 5.15923844091e-06
8.56361876793e-12 5.21551871202e-06
8.9204362166e-12 4.33454135873e-06
9.27725366526e-12 2.77643212598e-06
9.63407111392e-12 9.76429930688e-07
9.99088856259e-12 -6.15378120017e-07
1.03477060113e-11 -1.68168550374e-06
1.07045234599e-11 -2.11448886489e-06
1.10613409086e-11 -2.00243738391e-06
1.14181583572e-11 -1.55221506049e-06
1.17749758059e-11 -9.90809020607e-07
1.21317932546e-11 -4.90848659496e-07
1.24886107032e-11 -1.39417496214e-07
1.28454281519e-11 5.30864159298e-08
1.32022456006e-11 1.22761750099e-07
1.35590630492e-11 1.19960943401e-07
1.39158804979e-11 8.75523280541e-08
1.42726979466e-11 5.22590823948e-08
1.46295153952e-11 2.57800202297e-08
1.49863328439e-11 9.96325522085e-09
1.53431502925e-11 2.35661472281e-09
1.56999677412e-11 -3.92151118869e-10
1.60567851899e-11 -8.64745542534e-10
1.64136026385e-11 -6.00073747636e-10
1.67704200872e-11 -4.54518360449e-10
1.71272375359e-11 -4.85538498296e-10
1.74840549845e-11 -5.31038931578e-10
1.78408724332e-11 -5.43296709704e-10
1.81976898819e-11 -5.21641060208e-10
1.85545073305e-11 -4.7790465682e-10
1.89113247792e-11 -4.68222200595e-10
1.92681422278e-11 -4.92126145391e-10
1.96249596765e-11 -5.37258487698e-10
1.99817771252e-11 -5.75653493623e-10
2.03385945738e-11 -5.51751849071e-10
2.06954120225e-11 -5.11755159083e-10
2.10522294712e-11 -4.76256693804e-10
2.14090469198e-11 -4.91776185746e-10
2.17658643685e-11 -5.38581696602e-10
2.21226818172e-11 -5.85952314447e-10
2.24794992658e-11 -5.9240290104e-10
2.28363167145e-11 -5.46154822756e-10
2.31931341632e-11 -4.98551207262e-10
2.35499516118e-11 -4.96995781335e-10
2.39067690605e-11 -5.35012336517e-10
2.42635865091e-11 -5.91843355574e-10
2.46204039578e-11 -6.07185041829e-10
2.49772214065e-11 -5.75159420091e-10
2.53340388551e-11 -5.2870656464e-10

View File

@ -1,76 +1,76 @@
% time-domain voltage integration by openEMS v0.0.35-108-gc651cce @Wed May 21 16:07:12 2025
% start-coordinates: (-5.452e-05,-3.57575e-05,0.00015727) m -> [60,26,53]
% stop-coordinates: (-5.452e-05,-3.57575e-05,0.00016498) m -> [60,26,63]
% time-domain voltage integration by openEMS v0.0.36-93-g7b9cd51 @Tue Jan 20 09:58:40 2026
% start-coordinates: (-5.452e-05,-3.57575e-05,0.00015727) m -> [60,26,24]
% stop-coordinates: (-5.452e-05,-3.57575e-05,0.00016498) m -> [60,26,32]
% t/s voltage
0 -0
3.568439729e-13 -8.00494630651e-10
7.13687945801e-13 -1.11070533326e-09
1.0705319187e-12 -6.76339081962e-10
1.4273758916e-12 2.02641575048e-09
1.7842198645e-12 9.72329292082e-09
2.1410638374e-12 2.60521814122e-08
2.4979078103e-12 5.38477809009e-08
2.8547517832e-12 9.14600919444e-08
3.2115957561e-12 1.27009258222e-07
3.568439729e-12 1.32663989127e-07
3.9252837019e-12 6.33818957319e-08
4.2821276748e-12 -1.34183813838e-07
4.6389716477e-12 -4.98878437227e-07
4.9958156206e-12 -1.02117172318e-06
5.35265959351e-12 -1.61096340889e-06
5.70950356641e-12 -2.08797674617e-06
6.06634753931e-12 -2.21414373414e-06
6.42319151221e-12 -1.77175745364e-06
6.78003548511e-12 -6.66606494448e-07
7.13687945801e-12 9.89579628907e-07
7.49372343091e-12 2.86558150009e-06
7.85056740381e-12 4.49103808364e-06
8.20741137671e-12 5.41136230936e-06
8.56425534961e-12 5.35535093604e-06
8.92109932251e-12 4.34037141872e-06
9.27794329541e-12 2.66535518278e-06
9.63478726831e-12 7.95017975008e-07
9.99163124121e-12 -8.10008330632e-07
1.03484752141e-11 -1.84172374418e-06
1.0705319187e-11 -2.2141427749e-06
1.10621631599e-11 -2.03989927172e-06
1.14190071328e-11 -1.54289614329e-06
1.17758511057e-11 -9.5685446766e-07
1.21326950786e-11 -4.51870608487e-07
1.24895390515e-11 -1.0768544989e-07
1.28463830244e-11 7.31357860939e-08
1.32032269973e-11 1.32183795465e-07
1.35600709702e-11 1.22227312715e-07
1.39169149431e-11 8.6262111898e-08
1.4273758916e-11 4.99780314911e-08
1.46306028889e-11 2.38013969089e-08
1.49874468618e-11 8.69458946506e-09
1.53442908347e-11 1.69917924175e-09
1.57011348076e-11 -6.81016255541e-10
1.60579787805e-11 -9.89004531049e-10
1.64148227534e-11 -6.609396936e-10
1.67716667263e-11 -5.05631505415e-10
1.71285106992e-11 -5.15427152348e-10
1.74853546721e-11 -5.50320825368e-10
1.7842198645e-11 -5.77224190321e-10
1.81990426179e-11 -5.85737389147e-10
1.85558865908e-11 -5.59003409534e-10
1.89127305637e-11 -5.29261023896e-10
1.92695745366e-11 -5.22711911949e-10
1.96264185095e-11 -5.43804546532e-10
1.99832624824e-11 -5.71896344517e-10
2.03401064553e-11 -5.92108527139e-10
2.06969504282e-11 -5.90350579185e-10
2.10537944011e-11 -5.65704162334e-10
2.1410638374e-11 -5.50202626515e-10
2.17674823469e-11 -5.45138875013e-10
2.21243263198e-11 -5.70372658826e-10
2.24811702927e-11 -6.0024674467e-10
2.28380142656e-11 -6.07424808369e-10
2.31948582385e-11 -6.06971577166e-10
2.35517022114e-11 -5.81108739253e-10
2.39085461843e-11 -5.55554919776e-10
2.42653901572e-11 -5.50422037809e-10
2.46222341301e-11 -5.80960864485e-10
2.4979078103e-11 -6.18158890395e-10
2.53359220759e-11 -6.23615352066e-10
3.56817448664e-13 -7.71721686554e-10
7.13634897328e-13 -1.07992174925e-09
1.07045234599e-12 -6.64083059376e-10
1.42726979466e-12 1.96274965725e-09
1.78408724332e-12 9.44184841423e-09
2.14090469198e-12 2.52465880424e-08
2.49772214065e-12 5.22168910333e-08
2.85453958931e-12 8.86912183695e-08
3.21135703797e-12 1.2319198639e-07
3.56817448664e-12 1.28716775905e-07
3.9249919353e-12 6.16234170359e-08
4.28180938397e-12 -1.29860569409e-07
4.63862683263e-12 -4.83444047461e-07
4.99544428129e-12 -9.8998190623e-07
5.35226172996e-12 -1.56212909275e-06
5.70907917862e-12 -2.02519467507e-06
6.06589662729e-12 -2.14822422606e-06
6.42271407595e-12 -1.72004543231e-06
6.77953152461e-12 -6.48933049519e-07
7.13634897328e-12 9.57072842311e-07
7.49316642194e-12 2.77697542117e-06
7.8499838706e-12 4.35469624449e-06
8.20680131927e-12 5.24907915178e-06
8.56361876793e-12 5.19663586829e-06
8.9204362166e-12 4.21360849145e-06
9.27725366526e-12 2.58950109355e-06
9.63407111392e-12 7.74945423387e-07
9.99088856259e-12 -7.83087333645e-07
1.03477060113e-11 -1.7854191583e-06
1.07045234599e-11 -2.14812888544e-06
1.10613409086e-11 -1.98010221197e-06
1.14181583572e-11 -1.49840230534e-06
1.17749758059e-11 -9.29793152693e-07
1.21317932546e-11 -4.3950667461e-07
1.24886107032e-11 -1.05126613192e-07
1.28454281519e-11 7.0713482625e-08
1.32022456006e-11 1.28264569632e-07
1.35590630492e-11 1.18729823306e-07
1.39158804979e-11 8.38651033064e-08
1.42726979466e-11 4.86341535932e-08
1.46295153952e-11 2.31910183279e-08
1.49863328439e-11 8.50267800612e-09
1.53431502925e-11 1.67864012274e-09
1.56999677412e-11 -6.41033663651e-10
1.60567851899e-11 -9.50533853017e-10
1.64136026385e-11 -6.37526857694e-10
1.67704200872e-11 -4.91029661376e-10
1.71272375359e-11 -4.98709400165e-10
1.74840549845e-11 -5.31573715601e-10
1.78408724332e-11 -5.53240307732e-10
1.81976898819e-11 -5.65293076238e-10
1.85545073305e-11 -5.46355155562e-10
1.89113247792e-11 -5.197582989e-10
1.92681422278e-11 -5.04958314745e-10
1.96249596765e-11 -5.23564778337e-10
1.99817771252e-11 -5.5750467437e-10
2.03385945738e-11 -5.78647654098e-10
2.06954120225e-11 -5.74488002308e-10
2.10522294712e-11 -5.53237615442e-10
2.14090469198e-11 -5.25690838082e-10
2.17658643685e-11 -5.27616457469e-10
2.21226818172e-11 -5.46960112618e-10
2.24794992658e-11 -5.76994955287e-10
2.28363167145e-11 -5.96417377291e-10
2.31931341632e-11 -5.88708408411e-10
2.35499516118e-11 -5.60355654239e-10
2.39067690605e-11 -5.44567540367e-10
2.42635865091e-11 -5.42085057398e-10
2.46204039578e-11 -5.66507171035e-10
2.49772214065e-11 -5.90671681705e-10
2.53340388551e-11 -6.00899757036e-10

View File

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<ContinuousStructure CoordSystem="0">
<RectilinearGrid DeltaUnit="1e-06" CoordSystem="0">
<XLines Qty="121">-116.535,-110.677745358801,-104.820490717603,-95.8093297311435,-88.8776674338671,-83.5456195128853,-79.4440441890531,-76.2889862476437,-73.8620186004057,-71.9951204102226,-70.5590448793126,-69.4543713939972,-68.6046225591391,-67.9509696092484,-67.4481596477939,-67.0613827543674,-66.7638620671163,-66.535,-66.335,-66.135,-65.835,-65.535,-65.235,-64.935,-64.735,-64.535,-64.2725,-64.035,-63.835,-63.635,-63.1725,-62.71,-61.785,-60.86,-60.3975,-59.935,-59.735,-59.535,-59.3373611111111,-59.1444444444444,-58.9491666666667,-58.7538888888889,-58.5586111111111,-58.3633333333333,-58.1680555555556,-57.9727777777778,-57.7775,-57.5822222222222,-57.3869444444444,-57.1916666666667,-56.9963888888889,-56.8011111111111,-56.6058333333333,-56.4105555555556,-56.2176388888889,-56.02,-55.82,-55.62,-55.17,-54.72,-54.52,-54.32,-53.87,-53.42,-53.22,-53.02,-52.8223611111111,-52.6294444444444,-52.4341666666667,-52.2388888888889,-52.0436111111111,-51.8483333333333,-51.6530555555556,-51.4577777777778,-51.2625,-51.0672222222222,-50.8719444444444,-50.6766666666667,-50.4813888888889,-50.2861111111111,-50.0908333333333,-49.8955555555556,-49.7026388888889,-49.505,-49.305,-49.105,-48.6425,-48.18,-47.255,-46.33,-45.8675,-45.405,-45.205,-45.005,-44.7425,-44.505,-44.305,-44.105,-43.805,-43.505,-43.205,-42.905,-42.705,-42.505,-42.2761379328837,-41.9786172456326,-41.5918403522061,-41.0890303907516,-40.4353774408608,-39.5856286060028,-38.4809551206874,-37.0448795897774,-35.1779813995943,-32.7510137523563,-29.5959558109469,-25.4943804871147,-20.1623325661329,-13.2306702688565,-4.21950928239713,1.63774535880143,7.495</XLines>
<YLines Qty="93">-88.02,-82.1627453588014,-76.3054907176029,-67.2943297311435,-60.3626674338671,-55.0306195128853,-50.9290441890531,-47.7739862476437,-45.3470186004057,-43.4801204102226,-42.0440448793126,-40.9393713939972,-40.0896225591392,-39.4359696092484,-38.9331596477939,-38.5463827543674,-38.2488620671163,-38.02,-37.82,-37.62,-37.32,-37.02,-36.72,-36.42,-36.22,-36.02,-35.7575,-35.52,-35.32,-35.12,-34.7959375,-34.471875,-33.82375,-32.5275,-31.23125,-30.583125,-30.2590625,-29.935,-29.735,-29.535,-29.3373611111111,-29.1444444444444,-28.9491666666667,-28.7538888888889,-28.5586111111111,-28.3633333333333,-28.1680555555556,-27.9727777777778,-27.7775,-27.5822222222222,-27.3869444444444,-27.1916666666667,-26.9963888888889,-26.8011111111111,-26.6058333333333,-26.4105555555556,-26.2176388888889,-26.02,-25.82,-25.62,-25.17,-24.72,-24.52,-24.32,-23.87,-23.42,-23.22,-23.02,-22.82,-22.62,-22.32,-22.02,-21.72,-21.42,-21.22,-21.02,-20.7911379328837,-20.4936172456326,-20.1068403522061,-19.6040303907516,-18.9503774408608,-18.1006286060028,-16.9959551206874,-15.5598795897774,-13.6929813995943,-11.2660137523563,-8.11095581094692,-4.00938048711473,1.32266743386713,8.25432973114354,17.2654907176029,23.1227453588014,28.98</YLines>
<ZLines Qty="111">0,8.85851353228373,17.7170270645675,28.1513836288385,38.5857401931096,49.0200967573807,59.4544533216517,69.8888098859228,80.3231664501939,90.757523014465,101.191879578736,111.626236143007,120.712489340775,127.701914877519,133.07839605963,137.2141508151,140.395500627,142.84269279,144.7251483,146.173191,147.28707,148.1439,148.803,149.31,149.7,150,150.197368421053,150.394736842105,150.592105263158,150.789473684211,150.986842105263,151.184210526316,151.381578947368,151.578947368421,151.776315789474,151.973684210526,152.171052631579,152.368421052632,152.565789473684,152.763157894737,152.960526315789,153.157894736842,153.355263157895,153.552631578947,153.75,154.27,154.79,155.75,156.265,156.5225,156.78,156.943333333333,157.106666666667,157.27,157.54,157.81,158.325,158.84,160.1803,162.5803,163.7803,164.3803,164.6803,164.9803,165.1803,165.3803,165.5803,165.7803,165.9803,166.1803,166.3803,166.5803,166.7803,166.9803,167.1803,167.3803,167.5803,167.7803,167.9803,168.3553,168.7303,169.1053,169.4803,169.613633333333,169.746966666667,169.8803,170.1803,170.5703,171.0773,171.7364,172.59323,173.707109,175.1551517,177.03760721,179.484799373,182.6661491849,186.80190394037,192.178385122481,199.167810659225,208.254063856993,218.688420421264,229.122776985535,239.557133549806,249.991490114077,260.425846678348,270.860203242619,281.29455980689,291.728916371162,302.163272935433,311.021786467716,319.8803</ZLines>
<XLines Qty="121">-116.535,-110.677745358801,-104.820490717603,-95.8093297311435,-88.8776674338671,-83.5456195128853,-79.4440441890531,-76.2889862476437,-73.8620186004057,-71.9951204102226,-70.5590448793126,-69.4543713939972,-68.6046225591391,-67.9509696092484,-67.4481596477939,-67.0613827543674,-66.7638620671163,-66.535,-66.335,-66.135,-65.835,-65.535,-65.235,-64.935,-64.735,-64.535,-64.2725,-64.035,-63.835,-63.635,-63.1725,-62.71,-61.785,-60.86,-60.3975,-59.935,-59.735,-59.535,-59.3373611111111,-59.1444444444444,-58.9491666666667,-58.7538888888889,-58.5586111111111,-58.3633333333333,-58.1680555555556,-57.9727777777778,-57.7775,-57.5822222222222,-57.3869444444444,-57.1916666666667,-56.9963888888889,-56.8011111111111,-56.6058333333333,-56.4105555555556,-56.2176388888889,-56.02,-55.82,-55.62,-55.345,-55.07,-54.52,-53.97,-53.695,-53.42,-53.22,-53.02,-52.8223611111111,-52.6294444444444,-52.4341666666667,-52.2388888888889,-52.0436111111111,-51.8483333333333,-51.6530555555556,-51.4577777777778,-51.2625,-51.0672222222222,-50.8719444444444,-50.6766666666667,-50.4813888888889,-50.2861111111111,-50.0908333333333,-49.8955555555556,-49.7026388888889,-49.505,-49.305,-49.105,-48.6425,-48.18,-47.255,-46.33,-45.8675,-45.405,-45.205,-45.005,-44.7425,-44.505,-44.305,-44.105,-43.805,-43.505,-43.205,-42.905,-42.705,-42.505,-42.2761379328837,-41.9786172456326,-41.5918403522061,-41.0890303907516,-40.4353774408608,-39.5856286060028,-38.4809551206874,-37.0448795897774,-35.1779813995943,-32.7510137523563,-29.5959558109469,-25.4943804871147,-20.1623325661329,-13.2306702688565,-4.21950928239713,1.63774535880143,7.495</XLines>
<YLines Qty="93">-88.02,-82.1627453588014,-76.3054907176029,-67.2943297311435,-60.3626674338671,-55.0306195128853,-50.9290441890531,-47.7739862476437,-45.3470186004057,-43.4801204102226,-42.0440448793126,-40.9393713939972,-40.0896225591392,-39.4359696092484,-38.9331596477939,-38.5463827543674,-38.2488620671163,-38.02,-37.82,-37.62,-37.32,-37.02,-36.72,-36.42,-36.22,-36.02,-35.7575,-35.52,-35.32,-35.12,-34.7959375,-34.471875,-33.82375,-32.5275,-31.23125,-30.583125,-30.2590625,-29.935,-29.735,-29.535,-29.3373611111111,-29.1444444444444,-28.9491666666667,-28.7538888888889,-28.5586111111111,-28.3633333333333,-28.1680555555556,-27.9727777777778,-27.7775,-27.5822222222222,-27.3869444444444,-27.1916666666667,-26.9963888888889,-26.8011111111111,-26.6058333333333,-26.4105555555556,-26.2176388888889,-26.02,-25.82,-25.62,-25.345,-25.07,-24.52,-23.97,-23.695,-23.42,-23.22,-23.02,-22.82,-22.62,-22.32,-22.02,-21.72,-21.42,-21.22,-21.02,-20.7911379328837,-20.4936172456326,-20.1068403522061,-19.6040303907516,-18.9503774408608,-18.1006286060028,-16.9959551206874,-15.5598795897774,-13.6929813995943,-11.2660137523563,-8.11095581094692,-4.00938048711473,1.32266743386713,8.25432973114354,17.2654907176029,23.1227453588014,28.98</YLines>
<ZLines Qty="64">0,9.375,18.75,28.125,37.5,46.875,56.25,65.625,75,84.375,93.75,103.125,112.5,121.875,131.25,140.625,150,153.75,155.265,156.0225,156.40125,156.78,156.943333333333,157.106666666667,157.27,157.75189375,158.2337875,159.197575,161.12515,163.052725,164.0165125,164.49840625,164.9803,165.1803,165.5053,165.8303,166.4803,167.1303,167.4553,167.7803,167.9803,168.3553,168.7303,169.4803,169.8803,171.052175,172.22405,174.5678,179.2553,188.6303,198.0053,207.3803,216.7553,226.1303,235.5053,244.8803,254.2553,263.6303,273.0053,282.3803,291.7553,301.1303,310.5053,319.8803</ZLines>
</RectilinearGrid>
<BackgroundMaterial Epsilon="1" Mue="1" Kappa="0" Sigma="0" />
<ParameterSet />
@ -112,9 +112,9 @@
<Property Epsilon="1.190000e+01,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="2.000000e+00,0.000000e+00,0.000000e+00" Sigma="0.000000e+00,0.000000e+00,0.000000e+00" Density="0.000000e+00" />
<Weight Epsilon="1.000000e+00,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="1.000000e+00,1.000000e+00,1.000000e+00" Sigma="1.000000e+00,1.000000e+00,1.000000e+00" Density="1.000000e+00" />
</Material>
<LumpedElement ID="7" Name="port_resist_1" Direction="2" Caps="1" R="5.000000e+01" C="nan" L="nan">
<FillColor R="232" G="231" B="141" a="255" />
<EdgeColor R="232" G="231" B="141" a="255" />
<LumpedElement ID="7" Name="port_resist_1" Direction="2" Caps="1" R="5.000000e+01" C="-nan(ind)" L="-nan(ind)" LEtype="0.000000e+00">
<FillColor R="12" G="62" B="153" a="255" />
<EdgeColor R="12" G="62" B="153" a="255" />
<Primitives>
<Box Priority="150">
<P1 X="-6.453500e+01" Y="-2.602000e+01" Z="1.572700e+02" />
@ -122,9 +122,9 @@
</Box>
</Primitives>
</LumpedElement>
<Excitation ID="8" Name="port_excite_1" Number="0" Frequency="0.000000e+00" Delay="0.000000e+00" Type="0" Excite="0.000000e+00,0.000000e+00,-1.000000e+00" PropDir="0.000000e+00,0.000000e+00,0.000000e+00">
<FillColor R="118" G="90" B="46" a="255" />
<EdgeColor R="118" G="90" B="46" a="255" />
<Excitation ID="8" Name="port_excite_1" Number="0" Enabled="1" Frequency="0.000000e+00" Delay="0.000000e+00" Type="0" Excite="0.000000e+00,0.000000e+00,-1.000000e+00" PropDir="0.000000e+00,0.000000e+00,0.000000e+00">
<FillColor R="36" G="94" B="13" a="255" />
<EdgeColor R="36" G="94" B="13" a="255" />
<Primitives>
<Box Priority="150">
<P1 X="-6.453500e+01" Y="-2.602000e+01" Z="1.572700e+02" />
@ -134,8 +134,8 @@
<Weight X="1.000000e+00" Y="1.000000e+00" Z="1.000000e+00" />
</Excitation>
<ProbeBox ID="9" Name="port_ut_1" Number="0" Type="0" Weight="-1" NormDir="-1" StartTime="0" StopTime="0">
<FillColor R="99" G="51" B="159" a="255" />
<EdgeColor R="99" G="51" B="159" a="255" />
<FillColor R="28" G="6" B="183" a="255" />
<EdgeColor R="28" G="6" B="183" a="255" />
<Primitives>
<Box Priority="0">
<P1 X="-6.428500e+01" Y="-2.452000e+01" Z="1.572700e+02" />
@ -144,8 +144,8 @@
</Primitives>
</ProbeBox>
<ProbeBox ID="10" Name="port_it_1" Number="0" NormDir="2" Type="1" Weight="1" StartTime="0" StopTime="0">
<FillColor R="201" G="154" B="102" a="255" />
<EdgeColor R="201" G="154" B="102" a="255" />
<FillColor R="71" G="222" B="179" a="255" />
<EdgeColor R="71" G="222" B="179" a="255" />
<Primitives>
<Box Priority="0">
<P1 X="-6.453500e+01" Y="-2.602000e+01" Z="1.611252e+02" />
@ -153,9 +153,9 @@
</Box>
</Primitives>
</ProbeBox>
<LumpedElement ID="11" Name="port_resist_2" Direction="2" Caps="1" R="5.000000e+01" C="nan" L="nan">
<FillColor R="50" G="13" B="183" a="255" />
<EdgeColor R="50" G="13" B="183" a="255" />
<LumpedElement ID="11" Name="port_resist_2" Direction="2" Caps="1" R="5.000000e+01" C="-nan(ind)" L="-nan(ind)" LEtype="0.000000e+00">
<FillColor R="18" G="77" B="200" a="255" />
<EdgeColor R="18" G="77" B="200" a="255" />
<Primitives>
<Box Priority="150">
<P1 X="-4.500500e+01" Y="-2.602000e+01" Z="1.572700e+02" />
@ -164,8 +164,8 @@
</Primitives>
</LumpedElement>
<ProbeBox ID="12" Name="port_ut_2" Number="0" Type="0" Weight="-1" NormDir="-1" StartTime="0" StopTime="0">
<FillColor R="49" G="88" B="163" a="255" />
<EdgeColor R="49" G="88" B="163" a="255" />
<FillColor R="67" G="187" B="139" a="255" />
<EdgeColor R="67" G="187" B="139" a="255" />
<Primitives>
<Box Priority="0">
<P1 X="-4.475500e+01" Y="-2.452000e+01" Z="1.572700e+02" />
@ -174,8 +174,8 @@
</Primitives>
</ProbeBox>
<ProbeBox ID="13" Name="port_it_2" Number="0" NormDir="2" Type="1" Weight="1" StartTime="0" StopTime="0">
<FillColor R="90" G="37" B="93" a="255" />
<EdgeColor R="90" G="37" B="93" a="255" />
<FillColor R="166" G="31" B="3" a="255" />
<EdgeColor R="166" G="31" B="3" a="255" />
<Primitives>
<Box Priority="0">
<P1 X="-4.500500e+01" Y="-2.602000e+01" Z="1.611252e+02" />
@ -183,9 +183,9 @@
</Box>
</Primitives>
</ProbeBox>
<LumpedElement ID="14" Name="port_resist_3" Direction="2" Caps="1" R="5.000000e+01" C="nan" L="nan">
<FillColor R="5" G="23" B="88" a="255" />
<EdgeColor R="5" G="23" B="88" a="255" />
<LumpedElement ID="14" Name="port_resist_3" Direction="2" Caps="1" R="5.000000e+01" C="-nan(ind)" L="-nan(ind)" LEtype="0.000000e+00">
<FillColor R="90" G="125" B="9" a="255" />
<EdgeColor R="90" G="125" B="9" a="255" />
<Primitives>
<Box Priority="150">
<P1 X="-5.602000e+01" Y="-3.602000e+01" Z="1.572700e+02" />
@ -194,8 +194,8 @@
</Primitives>
</LumpedElement>
<ProbeBox ID="15" Name="port_ut_3" Number="0" Type="0" Weight="-1" NormDir="-1" StartTime="0" StopTime="0">
<FillColor R="233" G="94" B="212" a="255" />
<EdgeColor R="233" G="94" B="212" a="255" />
<FillColor R="56" G="37" B="31" a="255" />
<EdgeColor R="56" G="37" B="31" a="255" />
<Primitives>
<Box Priority="0">
<P1 X="-5.452000e+01" Y="-3.577000e+01" Z="1.572700e+02" />
@ -204,8 +204,8 @@
</Primitives>
</ProbeBox>
<ProbeBox ID="16" Name="port_it_3" Number="0" NormDir="2" Type="1" Weight="1" StartTime="0" StopTime="0">
<FillColor R="171" G="178" B="205" a="255" />
<EdgeColor R="171" G="178" B="205" a="255" />
<FillColor R="93" G="212" B="203" a="255" />
<EdgeColor R="93" G="212" B="203" a="255" />
<Primitives>
<Box Priority="0">
<P1 X="-5.602000e+01" Y="-3.602000e+01" Z="1.611252e+02" />

View File

@ -0,0 +1 @@
7b2e899963df2ca4162a2f2588c3f2f71f1bb6f86539f3d0b06b44c01580c766

View File

@ -1,76 +1,76 @@
% time-domain current integration by openEMS v0.0.35-108-gc651cce @Wed May 21 16:09:30 2025
% start-coordinates: (-6.4735e-05,-2.62176e-05,0.00016018) m -> [24,56,58]
% stop-coordinates: (-6.4035e-05,-2.302e-05,0.00016018) m -> [27,67,58]
% time-domain current integration by openEMS v0.0.36-93-g7b9cd51 @Tue Jan 20 10:01:58 2026
% start-coordinates: (-6.4735e-05,-2.62176e-05,0.000159198) m -> [24,56,27]
% stop-coordinates: (-6.4035e-05,-2.302e-05,0.000159198) m -> [27,67,27]
% t/s current
1.58035417582e-16 0
3.57002008318e-13 1.50025998569e-11
7.13845981218e-13 2.16801281788e-11
1.07068995412e-12 1.5056643432e-11
1.42753392702e-12 -3.39338002142e-11
1.78437789992e-12 -1.77419995362e-10
2.14122187282e-12 -4.85600226696e-10
2.49806584572e-12 -1.01879471526e-09
2.85490981862e-12 -1.75398129354e-09
3.21175379152e-12 -2.47559572841e-09
3.56859776442e-12 -2.65882071915e-09
3.92544173732e-12 -1.43508549488e-09
4.28228571022e-12 2.25162910539e-09
4.63912968312e-12 9.21483955807e-09
4.99597365602e-12 1.93671709781e-08
5.35281762892e-12 3.10683176963e-08
5.70966160182e-12 4.08823765952e-08
6.06650557472e-12 4.41421512676e-08
6.42334954762e-12 3.64304071354e-08
6.78019352052e-12 1.56018664654e-08
7.13703749342e-12 -1.65126312623e-08
7.49388146632e-12 -5.36968727261e-08
7.85072543922e-12 -8.6775635566e-08
8.20756941213e-12 -1.06589588711e-07
8.56441338503e-12 -1.07337456257e-07
8.92125735793e-12 -8.88151916456e-08
9.27810133083e-12 -5.64900375366e-08
9.63494530373e-12 -1.937759464e-08
9.99178927663e-12 1.32694824018e-08
1.03486332495e-11 3.49871704941e-08
1.07054772224e-11 4.36437765927e-08
1.10623211953e-11 4.11378699994e-08
1.14191651682e-11 3.17606208e-08
1.17760091411e-11 2.01817282885e-08
1.2132853114e-11 9.92816762135e-09
1.24896970869e-11 2.75605649414e-09
1.28465410598e-11 -1.14805420726e-09
1.32033850327e-11 -2.54057153093e-09
1.35602290056e-11 -2.46094811196e-09
1.39170729785e-11 -1.78697523445e-09
1.42739169514e-11 -1.06188080551e-09
1.46307609243e-11 -5.20834653184e-10
1.49876048972e-11 -1.99657540501e-10
1.53444488701e-11 -4.62868667006e-11
1.5701292843e-11 8.71719189888e-12
1.60581368159e-11 1.79463752886e-11
1.64149807888e-11 1.24781929581e-11
1.67718247617e-11 9.27640429749e-12
1.71286687346e-11 1.01718338613e-11
1.74855127075e-11 1.10784350443e-11
1.78423566804e-11 1.14409219945e-11
1.81992006533e-11 1.07031978766e-11
1.85560446262e-11 9.85125349351e-12
1.89128885991e-11 9.59147084673e-12
1.9269732572e-11 1.01880856182e-11
1.96265765449e-11 1.13063855153e-11
1.99834205178e-11 1.18826242249e-11
2.03402644907e-11 1.14349753624e-11
2.06971084636e-11 1.05981083284e-11
2.10539524365e-11 9.8443735802e-12
2.14107964094e-11 1.03413336922e-11
2.17676403823e-11 1.10867539108e-11
2.21244843552e-11 1.21166982697e-11
2.24813283281e-11 1.20747387783e-11
2.2838172301e-11 1.11744962242e-11
2.31950162739e-11 1.02684943881e-11
2.35518602468e-11 1.04328819889e-11
2.39087042197e-11 1.10144124724e-11
2.42655481926e-11 1.21188181018e-11
2.46223921655e-11 1.25232471962e-11
2.49792361384e-11 1.19246661157e-11
2.53360801113e-11 1.0918906404e-11
1.64432003993e-16 0
3.56981880668e-13 1.4497772774e-11
7.13799329332e-13 2.10385441707e-11
1.070616778e-12 1.46970751541e-11
1.42743422666e-12 -3.23189253137e-11
1.78425167532e-12 -1.71262989901e-10
2.14106912399e-12 -4.69819405602e-10
2.49788657265e-12 -9.86258519298e-10
2.85470402131e-12 -1.69980363118e-09
3.21152146998e-12 -2.39989361717e-09
3.56833891864e-12 -2.58084376092e-09
3.92515636731e-12 -1.40077771604e-09
4.28197381597e-12 2.16567075384e-09
4.63879126463e-12 8.90926177277e-09
4.9956087133e-12 1.87505886373e-08
5.35242616196e-12 3.01034255301e-08
5.70924361063e-12 3.96407529024e-08
6.06606105929e-12 4.28376445427e-08
6.42287850795e-12 3.54024365379e-08
6.77969595662e-12 1.52427155342e-08
7.13651340528e-12 -1.58837689668e-08
7.49333085394e-12 -5.19589704595e-08
7.85014830261e-12 -8.40899332388e-08
8.20696575127e-12 -1.0338108325e-07
8.56378319994e-12 -1.04186071326e-07
8.9206006486e-12 -8.6283243661e-08
9.27741809726e-12 -5.49561853802e-08
9.63423554593e-12 -1.89453714938e-08
9.99105299459e-12 1.27664279148e-08
1.03478704433e-11 3.38924692755e-08
1.07046878919e-11 4.23442578779e-08
1.10615053406e-11 3.99504109794e-08
1.14183227892e-11 3.08688683504e-08
1.17751402379e-11 1.96334966063e-08
1.21319576866e-11 9.67174251798e-09
1.24887751352e-11 2.69685052068e-09
1.28455925839e-11 -1.10474640547e-09
1.32024100326e-11 -2.46515252655e-09
1.35592274812e-11 -2.39234942967e-09
1.39160449299e-11 -1.73911685053e-09
1.42728623786e-11 -1.03451991418e-09
1.46296798272e-11 -5.08546649236e-10
1.49864972759e-11 -1.95433974559e-10
1.53433147245e-11 -4.55667725774e-11
1.57001321732e-11 8.25632270884e-12
1.60569496219e-11 1.72098776202e-11
1.64137670705e-11 1.18711108651e-11
1.67705845192e-11 9.13676946601e-12
1.71274019679e-11 9.74421411615e-12
1.74842194165e-11 1.0615817253e-11
1.78410368652e-11 1.08150753977e-11
1.81978543139e-11 1.0353106393e-11
1.85546717625e-11 9.50683975987e-12
1.89114892112e-11 9.41470252452e-12
1.92683066599e-11 9.89714993987e-12
1.96251241085e-11 1.07488982992e-11
1.99819415572e-11 1.14516599328e-11
2.03387590058e-11 1.09369796206e-11
2.06955764545e-11 1.01213429998e-11
2.10523939032e-11 9.56029960059e-12
2.14092113518e-11 9.94155539141e-12
2.17660288005e-11 1.0739831767e-11
2.21228462492e-11 1.16765520863e-11
2.24796636978e-11 1.17331465724e-11
2.28364811465e-11 1.08362095338e-11
2.31932985952e-11 9.95547481258e-12
2.35501160438e-11 9.97510841289e-12
2.39069334925e-11 1.07019575493e-11
2.42637509411e-11 1.1861843105e-11
2.46205683898e-11 1.21090984462e-11
2.49773858385e-11 1.13690385231e-11
2.53342032871e-11 1.05357120597e-11

View File

@ -1,76 +1,76 @@
% time-domain current integration by openEMS v0.0.35-108-gc651cce @Wed May 21 16:09:30 2025
% start-coordinates: (-4.5205e-05,-2.62176e-05,0.00016018) m -> [92,56,58]
% stop-coordinates: (-4.4505e-05,-2.302e-05,0.00016018) m -> [95,67,58]
% time-domain current integration by openEMS v0.0.36-93-g7b9cd51 @Tue Jan 20 10:01:58 2026
% start-coordinates: (-4.5205e-05,-2.62176e-05,0.000159198) m -> [92,56,27]
% stop-coordinates: (-4.4505e-05,-2.302e-05,0.000159198) m -> [95,67,27]
% t/s current
1.58035417582e-16 0
3.57002008318e-13 -3.32372254719e-11
7.13845981218e-13 -4.26848313639e-11
1.07068995412e-12 -1.15454963298e-11
1.42753392702e-12 1.28304797342e-10
1.78437789992e-12 4.9282117276e-10
2.14122187282e-12 1.22303545069e-09
2.49806584572e-12 2.4053641301e-09
2.85490981862e-12 3.90713283949e-09
3.21175379152e-12 5.14580866806e-09
3.56859776442e-12 4.88882889726e-09
3.92544173732e-12 1.27089205826e-09
4.28228571022e-12 -7.75370079253e-09
4.63912968312e-12 -2.34193766602e-08
4.99597365602e-12 -4.47969767947e-08
5.35281762892e-12 -6.76610625305e-08
5.70966160182e-12 -8.43924112814e-08
6.06650557472e-12 -8.55965325286e-08
6.42334954762e-12 -6.34123651366e-08
6.78019352052e-12 -1.54922794593e-08
7.13703749342e-12 5.21772811624e-08
7.49388146632e-12 1.25396780959e-07
7.85072543922e-12 1.85489639648e-07
8.20756941213e-12 2.1558149399e-07
8.56441338503e-12 2.0685045854e-07
8.92125735793e-12 1.61934650578e-07
9.27810133083e-12 9.3886406205e-08
9.63494530373e-12 2.11821014062e-08
9.99178927663e-12 -3.88924057404e-08
1.03486332495e-11 -7.5595913529e-08
1.07054772224e-11 -8.68508678309e-08
1.10623211953e-11 -7.78716753302e-08
1.14191651682e-11 -5.76046481626e-08
1.17760091411e-11 -3.48940716322e-08
1.2132853114e-11 -1.58923576521e-08
1.24896970869e-11 -3.26086802005e-09
1.28465410598e-11 3.1743292439e-09
1.32033850327e-11 5.11989917129e-09
1.35602290056e-11 4.59642190975e-09
1.39170729785e-11 3.19181014952e-09
1.42739169514e-11 1.82724813058e-09
1.46307609243e-11 8.60517435086e-10
1.49876048972e-11 3.10200171105e-10
1.53444488701e-11 5.83134027177e-11
1.5701292843e-11 -2.5361705791e-11
1.60581368159e-11 -3.48625121827e-11
1.64149807888e-11 -2.30263030865e-11
1.67718247617e-11 -1.98831524162e-11
1.71286687346e-11 -2.10192887401e-11
1.74855127075e-11 -2.22855310594e-11
1.78423566804e-11 -2.30295817139e-11
1.81992006533e-11 -2.20300305775e-11
1.85560446262e-11 -2.08320392187e-11
1.89128885991e-11 -2.02039392161e-11
1.9269732572e-11 -2.1065536468e-11
1.96265765449e-11 -2.27470126068e-11
1.99834205178e-11 -2.37218734239e-11
2.03402644907e-11 -2.36550813659e-11
2.06971084636e-11 -2.20739607149e-11
2.10539524365e-11 -2.11102038628e-11
2.14107964094e-11 -2.11832964364e-11
2.17676403823e-11 -2.24432729345e-11
2.21244843552e-11 -2.36610887133e-11
2.24813283281e-11 -2.42420701568e-11
2.2838172301e-11 -2.34194972443e-11
2.31950162739e-11 -2.22269581213e-11
2.35518602468e-11 -2.16615596987e-11
2.39087042197e-11 -2.22933164984e-11
2.42655481926e-11 -2.38869028724e-11
2.46223921655e-11 -2.46992773456e-11
2.49792361384e-11 -2.45064541576e-11
2.53360801113e-11 -2.32527799099e-11
1.64432003993e-16 0
3.56981880668e-13 -3.21075110943e-11
7.13799329332e-13 -4.12281077333e-11
1.070616778e-12 -1.11154375634e-11
1.42743422666e-12 1.25315174904e-10
1.78425167532e-12 4.79433603928e-10
2.14106912399e-12 1.1885621376e-09
2.49788657265e-12 2.33616170853e-09
2.85470402131e-12 3.79326658972e-09
3.21152146998e-12 4.99255969899e-09
3.56833891864e-12 4.7389874247e-09
3.92515636731e-12 1.22105647815e-09
4.28197381597e-12 -7.54370610423e-09
4.63879126463e-12 -2.274870603e-08
4.9956087133e-12 -4.34897842183e-08
5.35242616196e-12 -6.56627534568e-08
5.70924361063e-12 -8.18752496912e-08
6.06606105929e-12 -8.3015819996e-08
6.42287850795e-12 -6.14667854393e-08
6.77969595662e-12 -1.49609906686e-08
7.13651340528e-12 5.06872090966e-08
7.49333085394e-12 1.2170058028e-07
7.85014830261e-12 1.7996737256e-07
8.20696575127e-12 2.09127577477e-07
8.56378319994e-12 2.00634417524e-07
8.9206006486e-12 1.57053605676e-07
9.27741809726e-12 9.10461182002e-08
9.63423554593e-12 2.05293488875e-08
9.99105299459e-12 -3.77349955727e-08
1.03478704433e-11 -7.33330196567e-08
1.07046878919e-11 -8.42509706445e-08
1.10615053406e-11 -7.5544271283e-08
1.14183227892e-11 -5.58884032387e-08
1.17751402379e-11 -3.3860636961e-08
1.21319576866e-11 -1.54264103713e-08
1.24887751352e-11 -3.16976556114e-09
1.28455925839e-11 3.0768185777e-09
1.32024100326e-11 4.96736340949e-09
1.35592274812e-11 4.46184333924e-09
1.39160449299e-11 3.09996073256e-09
1.42728623786e-11 1.77622638819e-09
1.46296798272e-11 8.37663383102e-10
1.49864972759e-11 3.02693758947e-10
1.53433147245e-11 5.77696050719e-11
1.57001321732e-11 -2.39640998018e-11
1.60569496219e-11 -3.31651962837e-11
1.64137670705e-11 -2.19820828207e-11
1.67705845192e-11 -1.8968240173e-11
1.71274019679e-11 -2.02178950665e-11
1.74842194165e-11 -2.17984311157e-11
1.78410368652e-11 -2.2009432471e-11
1.81978543139e-11 -2.13157148182e-11
1.85546717625e-11 -1.99441279464e-11
1.89114892112e-11 -1.96127506596e-11
1.92683066599e-11 -2.04335021126e-11
1.96251241085e-11 -2.21119945271e-11
1.99819415572e-11 -2.29922244438e-11
2.03387590058e-11 -2.27998349367e-11
2.06955764545e-11 -2.16166164829e-11
2.10523939032e-11 -2.05394295322e-11
2.14092113518e-11 -2.05946371068e-11
2.17660288005e-11 -2.18403316266e-11
2.21228462492e-11 -2.32420523799e-11
2.24796636978e-11 -2.36703157075e-11
2.28364811465e-11 -2.28494688448e-11
2.31932985952e-11 -2.15809748544e-11
2.35501160438e-11 -2.10306529136e-11
2.39069334925e-11 -2.16263552205e-11
2.42637509411e-11 -2.30380627769e-11
2.46205683898e-11 -2.40302014398e-11
2.49773858385e-11 -2.37618084931e-11
2.53342032871e-11 -2.2752820461e-11

View File

@ -1,76 +1,76 @@
% time-domain current integration by openEMS v0.0.35-108-gc651cce @Wed May 21 16:09:30 2025
% start-coordinates: (-5.62176e-05,-3.622e-05,0.00016018) m -> [54,24,58]
% stop-coordinates: (-5.302e-05,-3.552e-05,0.00016018) m -> [65,27,58]
% time-domain current integration by openEMS v0.0.36-93-g7b9cd51 @Tue Jan 20 10:01:58 2026
% start-coordinates: (-5.62176e-05,-3.622e-05,0.000159198) m -> [54,24,27]
% stop-coordinates: (-5.302e-05,-3.552e-05,0.000159198) m -> [65,27,27]
% t/s current
1.58035417582e-16 0
3.57002008318e-13 1.62725440761e-11
7.13845981218e-13 2.23329688076e-11
1.07068995412e-12 1.30064257975e-11
1.42753392702e-12 -4.23322071841e-11
1.78437789992e-12 -1.98752320157e-10
2.14122187282e-12 -5.29326027454e-10
2.49806584572e-12 -1.08973430279e-09
2.85490981862e-12 -1.84448345486e-09
3.21175379152e-12 -2.55065790711e-09
3.56859776442e-12 -2.64500155112e-09
3.92544173732e-12 -1.22073284814e-09
4.28228571022e-12 2.78876477466e-09
4.63912968312e-12 1.01493053961e-08
4.99597365602e-12 2.06450927465e-08
5.35281762892e-12 3.24392743778e-08
5.70966160182e-12 4.18944665626e-08
6.06650557472e-12 4.42387459998e-08
6.42334954762e-12 3.51443922852e-08
6.78019352052e-12 1.27925448012e-08
7.13703749342e-12 -2.04952002036e-08
7.49388146632e-12 -5.80184966736e-08
7.85072543922e-12 -9.03419845599e-08
8.20756941213e-12 -1.08412052668e-07
8.56441338503e-12 -1.06900365893e-07
8.92125735793e-12 -8.62715126004e-08
9.27810133083e-12 -5.25967784881e-08
9.63494530373e-12 -1.52042467505e-08
9.99178927663e-12 1.67254565753e-08
1.03486332495e-11 3.71097605978e-08
1.07054772224e-11 4.43151328966e-08
1.10623211953e-11 4.06573619216e-08
1.14191651682e-11 3.06379526194e-08
1.17760091411e-11 1.89191489142e-08
1.2132853114e-11 8.87059758981e-09
1.24896970869e-11 2.05291361688e-09
1.28465410598e-11 -1.50684953404e-09
1.32033850327e-11 -2.65076893768e-09
1.35602290056e-11 -2.43394482347e-09
1.39170729785e-11 -1.71045844155e-09
1.42739169514e-11 -9.87270154518e-10
1.46307609243e-11 -4.681875998e-10
1.49876048972e-11 -1.69839975417e-10
1.53444488701e-11 -3.2346212514e-11
1.5701292843e-11 1.39839572214e-11
1.60581368159e-11 1.97150941406e-11
1.64149807888e-11 1.30502518514e-11
1.67718247617e-11 1.00885662671e-11
1.71286687346e-11 1.03370662724e-11
1.74855127075e-11 1.09994487477e-11
1.78423566804e-11 1.15161031752e-11
1.81992006533e-11 1.17070702091e-11
1.85560446262e-11 1.11534280076e-11
1.89128885991e-11 1.05400774913e-11
1.9269732572e-11 1.04552998204e-11
1.96265765449e-11 1.09036460416e-11
1.99834205178e-11 1.14427096271e-11
2.03402644907e-11 1.18469730553e-11
2.06971084636e-11 1.17880817954e-11
2.10539524365e-11 1.13061626034e-11
2.14107964094e-11 1.09584624361e-11
2.17676403823e-11 1.09140110144e-11
2.21244843552e-11 1.14093699766e-11
2.24813283281e-11 1.20043888024e-11
2.2838172301e-11 1.21354306812e-11
2.31950162739e-11 1.21618826121e-11
2.35518602468e-11 1.15946661994e-11
2.39087042197e-11 1.11069391531e-11
2.42655481926e-11 1.10280872975e-11
2.46223921655e-11 1.16289894381e-11
2.49792361384e-11 1.23673736183e-11
2.53360801113e-11 1.24700510334e-11
1.64432003993e-16 0
3.56981880668e-13 1.56399216494e-11
7.13799329332e-13 2.16488441757e-11
1.070616778e-12 1.29497385037e-11
1.42743422666e-12 -4.07869293895e-11
1.78425167532e-12 -1.92197507909e-10
2.14106912399e-12 -5.11552633586e-10
2.49788657265e-12 -1.05460851163e-09
2.85470402131e-12 -1.78617975966e-09
3.21152146998e-12 -2.47237941231e-09
3.56833891864e-12 -2.56807841659e-09
3.92515636731e-12 -1.19529885989e-09
4.28197381597e-12 2.68156985506e-09
4.63879126463e-12 9.80738867895e-09
4.9956087133e-12 1.99792484779e-08
5.35242616196e-12 3.1421841129e-08
5.70924361063e-12 4.06156743793e-08
6.06606105929e-12 4.29322923878e-08
6.42287850795e-12 3.41690551409e-08
6.77969595662e-12 1.25438628373e-08
7.13651340528e-12 -1.97114733425e-08
7.49333085394e-12 -5.61154642753e-08
7.85014830261e-12 -8.75220038665e-08
8.20696575127e-12 -1.05138163065e-07
8.56378319994e-12 -1.03771043314e-07
8.9206006486e-12 -8.38408524828e-08
9.27741809726e-12 -5.12137248165e-08
9.63423554593e-12 -1.49312278097e-08
9.99105299459e-12 1.60927164927e-08
1.03478704433e-11 3.5936704279e-08
1.07046878919e-11 4.2992507332e-08
1.10615053406e-11 3.94897838873e-08
1.14183227892e-11 2.97896605161e-08
1.17751402379e-11 1.84179853591e-08
1.21319576866e-11 8.6533100685e-09
1.24887751352e-11 2.01933936239e-09
1.28455925839e-11 -1.45104850358e-09
1.32024100326e-11 -2.57161447692e-09
1.35592274812e-11 -2.36625097294e-09
1.39160449299e-11 -1.66531333168e-09
1.42728623786e-11 -9.62649293612e-10
1.46296798272e-11 -4.57357179906e-10
1.49864972759e-11 -1.66669428259e-10
1.53433147245e-11 -3.21947225823e-11
1.57001321732e-11 1.31544228635e-11
1.60569496219e-11 1.88941518681e-11
1.64137670705e-11 1.25673863677e-11
1.67705845192e-11 9.83545449945e-12
1.71274019679e-11 1.00077940726e-11
1.74842194165e-11 1.06964975072e-11
1.78410368652e-11 1.10491676572e-11
1.81978543139e-11 1.12715366554e-11
1.85546717625e-11 1.08762001141e-11
1.89114892112e-11 1.03752709549e-11
1.92683066599e-11 1.01094670829e-11
1.96251241085e-11 1.04854354366e-11
1.99819415572e-11 1.11774088249e-11
2.03387590058e-11 1.15779044338e-11
2.06955764545e-11 1.14262210804e-11
2.10523939032e-11 1.09998520709e-11
2.14092113518e-11 1.05005813072e-11
2.17660288005e-11 1.05479670137e-11
2.21228462492e-11 1.09447954172e-11
2.24796636978e-11 1.15135618053e-11
2.28364811465e-11 1.19237068136e-11
2.31932985952e-11 1.17400629149e-11
2.35501160438e-11 1.11340702283e-11
2.39069334925e-11 1.08797025208e-11
2.42637509411e-11 1.0866270557e-11
2.46205683898e-11 1.13724663367e-11
2.49773858385e-11 1.18299484791e-11
2.53342032871e-11 1.19866529896e-11

View File

@ -1,76 +1,76 @@
% time-domain voltage integration by openEMS v0.0.35-108-gc651cce @Wed May 21 16:09:30 2025
% start-coordinates: (-6.42725e-05,-2.452e-05,0.00015727) m -> [26,62,53]
% stop-coordinates: (-6.42725e-05,-2.452e-05,0.00016498) m -> [26,62,63]
% time-domain voltage integration by openEMS v0.0.36-93-g7b9cd51 @Tue Jan 20 10:01:58 2026
% start-coordinates: (-6.42725e-05,-2.452e-05,0.00015727) m -> [26,62,24]
% stop-coordinates: (-6.42725e-05,-2.452e-05,0.00016498) m -> [26,62,32]
% t/s voltage
0 -0
3.568439729e-13 -7.47871185119e-10
7.13687945801e-13 -1.0818420014e-09
1.0705319187e-12 -7.63615531918e-10
1.4273758916e-12 1.61925626033e-09
1.7842198645e-12 8.67834082374e-09
2.1410638374e-12 2.39062230567e-08
2.4979078103e-12 5.03502473048e-08
2.8547517832e-12 8.69714504859e-08
3.2115957561e-12 1.23232398508e-07
3.568439729e-12 1.33204707709e-07
3.9252837019e-12 7.3767010722e-08
4.2821276748e-12 -1.07864161158e-07
4.6389716477e-12 -4.52827775277e-07
4.9958156206e-12 -9.57898294018e-07
5.35265959351e-12 -1.54270023955e-06
5.70950356641e-12 -2.03700615486e-06
6.06634753931e-12 -2.20810957785e-06
6.42319151221e-12 -1.83410212884e-06
6.78003548511e-12 -8.04775796226e-07
7.13687945801e-12 7.92458861198e-07
7.49372343091e-12 2.65052818094e-06
7.85056740381e-12 4.312369839e-06
8.20741137671e-12 5.31853268626e-06
8.56425534961e-12 5.37464946149e-06
8.92109932251e-12 4.46490875561e-06
9.27794329541e-12 2.85801104383e-06
9.63478726831e-12 1.0027590136e-06
9.99163124121e-12 -6.37020081129e-07
1.03484752141e-11 -1.73463226361e-06
1.0705319187e-11 -2.17931096813e-06
1.10621631599e-11 -2.06280208204e-06
1.14190071328e-11 -1.59829256319e-06
1.17758511057e-11 -1.01969114752e-06
1.21326950786e-11 -5.04780823363e-07
1.24895390515e-11 -1.43045489231e-07
1.28463830244e-11 5.49650960302e-08
1.32032269973e-11 1.26494304808e-07
1.35600709702e-11 1.23470853097e-07
1.39169149431e-11 9.00439511842e-08
1.4273758916e-11 5.3703408387e-08
1.46306028889e-11 2.64448607457e-08
1.49874468618e-11 1.02000464186e-08
1.53442908347e-11 2.40411255487e-09
1.57011348076e-11 -4.11925490246e-10
1.60579787805e-11 -9.01163133699e-10
1.64148227534e-11 -6.29762512971e-10
1.67716667263e-11 -4.66312878936e-10
1.71285106992e-11 -5.08124230192e-10
1.74853546721e-11 -5.53189417885e-10
1.7842198645e-11 -5.71837448921e-10
1.81990426179e-11 -5.37540919762e-10
1.85558865908e-11 -4.9674390469e-10
1.89127305637e-11 -4.78149781921e-10
1.92695745366e-11 -5.12628587149e-10
1.96264185095e-11 -5.64886266236e-10
1.99832624824e-11 -5.93697853032e-10
2.03401064553e-11 -5.72744400518e-10
2.06969504282e-11 -5.30125636097e-10
2.10537944011e-11 -4.94281325938e-10
2.1410638374e-11 -5.17568170613e-10
2.17674823469e-11 -5.5594384131e-10
2.21243263198e-11 -6.04320154682e-10
2.24811702927e-11 -6.03339732341e-10
2.28380142656e-11 -5.6075911449e-10
2.31948582385e-11 -5.15178547392e-10
2.35517022114e-11 -5.20507324742e-10
2.39085461843e-11 -5.50516781467e-10
2.42653901572e-11 -6.0592227763e-10
2.46222341301e-11 -6.23999745972e-10
2.4979078103e-11 -5.9931070176e-10
2.53359220759e-11 -5.47623653022e-10
3.56817448664e-13 -7.22666971403e-10
7.13634897328e-13 -1.0468354239e-09
1.07045234599e-12 -7.3999101638e-10
1.42726979466e-12 1.55296574211e-09
1.78408724332e-12 8.40889213816e-09
2.14090469198e-12 2.318278014e-08
2.49772214065e-12 4.8830102406e-08
2.85453958931e-12 8.43829974784e-08
3.21135703797e-12 1.19532746368e-07
3.56817448664e-12 1.29232399004e-07
3.9249919353e-12 7.16415144986e-08
4.28180938397e-12 -1.04446055804e-07
4.63862683263e-12 -4.38977400208e-07
4.99544428129e-12 -9.28894664298e-07
5.35226172996e-12 -1.49624021617e-06
5.70907917862e-12 -1.97597852036e-06
6.06589662729e-12 -2.14243772234e-06
6.42271407595e-12 -1.78022787622e-06
6.77953152461e-12 -7.82328456239e-07
7.13634897328e-12 7.66773755601e-07
7.49316642194e-12 2.56935385323e-06
7.8499838706e-12 4.18221966925e-06
8.20680131927e-12 5.15946379664e-06
8.56361876793e-12 5.21525450381e-06
8.9204362166e-12 4.33386628629e-06
9.27725366526e-12 2.77554187278e-06
9.63407111392e-12 9.75560247696e-07
9.99088856259e-12 -6.16032654221e-07
1.03477060113e-11 -1.68202700479e-06
1.07045234599e-11 -2.11452768895e-06
1.10613409086e-11 -2.00226109826e-06
1.14181583572e-11 -1.55194057783e-06
1.17749758059e-11 -9.90537508017e-07
1.21317932546e-11 -4.90640736928e-07
1.24886107032e-11 -1.39292057888e-07
1.28454281519e-11 5.31412129856e-08
1.32022456006e-11 1.2277066741e-07
1.35590630492e-11 1.19947268118e-07
1.39158804979e-11 8.75334453809e-08
1.42726979466e-11 5.22434093764e-08
1.46295153952e-11 2.57698730133e-08
1.49863328439e-11 9.95786370028e-09
1.53431502925e-11 2.35437930263e-09
1.56999677412e-11 -3.92890163112e-10
1.60567851899e-11 -8.65149982904e-10
1.64136026385e-11 -6.00224904501e-10
1.67704200872e-11 -4.54710918224e-10
1.71272375359e-11 -4.85608137035e-10
1.74840549845e-11 -5.31265188092e-10
1.78408724332e-11 -5.43224534799e-10
1.81976898819e-11 -5.2186601221e-10
1.85545073305e-11 -4.78097846035e-10
1.89113247792e-11 -4.68457470731e-10
1.92681422278e-11 -4.9220933579e-10
1.96249596765e-11 -5.37214873281e-10
1.99817771252e-11 -5.75549857773e-10
2.03385945738e-11 -5.51691838047e-10
2.06954120225e-11 -5.11808585096e-10
2.10522294712e-11 -4.76585007569e-10
2.14090469198e-11 -4.91860711882e-10
2.17658643685e-11 -5.38462725796e-10
2.21226818172e-11 -5.8591923674e-10
2.24794992658e-11 -5.92290438917e-10
2.28363167145e-11 -5.46047328881e-10
2.31931341632e-11 -4.98614288746e-10
2.35499516118e-11 -4.97147670253e-10
2.39067690605e-11 -5.35062705947e-10
2.42635865091e-11 -5.91685207774e-10
2.46204039578e-11 -6.07071934389e-10
2.49772214065e-11 -5.75035689204e-10
2.53340388551e-11 -5.28736349842e-10

View File

@ -1,76 +1,76 @@
% time-domain voltage integration by openEMS v0.0.35-108-gc651cce @Wed May 21 16:09:30 2025
% start-coordinates: (-4.47425e-05,-2.452e-05,0.00015727) m -> [94,62,53]
% stop-coordinates: (-4.47425e-05,-2.452e-05,0.00016498) m -> [94,62,63]
% time-domain voltage integration by openEMS v0.0.36-93-g7b9cd51 @Tue Jan 20 10:01:58 2026
% start-coordinates: (-4.47425e-05,-2.452e-05,0.00015727) m -> [94,62,24]
% stop-coordinates: (-4.47425e-05,-2.452e-05,0.00016498) m -> [94,62,32]
% t/s voltage
0 -0
3.568439729e-13 -1.4055211231e-09
7.13687945801e-13 -1.1336513013e-09
1.0705319187e-12 1.21978654608e-09
1.4273758916e-12 8.68088836925e-09
1.7842198645e-12 2.54157238588e-08
2.1410638374e-12 5.52915313534e-08
2.4979078103e-12 9.78127734363e-08
2.8547517832e-12 1.41542443988e-07
3.2115957561e-12 1.56957206787e-07
3.568439729e-12 9.37139263968e-08
3.9252837019e-12 -1.10867566683e-07
4.2821276748e-12 -5.06447030091e-07
4.6389716477e-12 -1.08975872593e-06
4.9958156206e-12 -1.76436316224e-06
5.35265959351e-12 -2.32506455689e-06
5.70950356641e-12 -2.4923805384e-06
6.06634753931e-12 -2.00449024845e-06
6.42319151221e-12 -7.42765678297e-07
6.78003548511e-12 1.16418585705e-06
7.13687945801e-12 3.32025395977e-06
7.49372343091e-12 5.15916811139e-06
7.85056740381e-12 6.13704968089e-06
8.20741137671e-12 5.94158478862e-06
8.56425534961e-12 4.62113062838e-06
8.92109932251e-12 2.56909434171e-06
9.27794329541e-12 3.69854703308e-07
9.63478726831e-12 -1.42046151552e-06
9.99163124121e-12 -2.45819848743e-06
1.03484752141e-11 -2.68783448831e-06
1.0705319187e-11 -2.29581635836e-06
1.10621631599e-11 -1.58696959573e-06
1.14190071328e-11 -8.51818541037e-07
1.17758511057e-11 -2.79819138527e-07
1.21326950786e-11 6.22804483541e-08
1.24895390515e-11 2.01106590048e-07
1.28463830244e-11 2.07501185567e-07
1.32032269973e-11 1.53700732142e-07
1.35600709702e-11 9.01544330301e-08
1.39169149431e-11 4.13787659692e-08
1.4273758916e-11 1.27388597448e-08
1.46306028889e-11 -6.76201317162e-11
1.49874468618e-11 -3.68598301881e-09
1.53442908347e-11 -3.37563985098e-09
1.57011348076e-11 -2.1421514701e-09
1.60579787805e-11 -1.15895378711e-09
1.64148227534e-11 -7.17930527527e-10
1.67716667263e-11 -8.83202642965e-10
1.71285106992e-11 -8.26627887668e-10
1.74853546721e-11 -7.64717695417e-10
1.7842198645e-11 -7.26213292626e-10
1.81990426179e-11 -7.7445346143e-10
1.85558865908e-11 -8.35736334304e-10
1.89127305637e-11 -8.66646546194e-10
1.92695745366e-11 -8.27372066692e-10
1.96264185095e-11 -7.41925791636e-10
1.99832624824e-11 -6.93086629755e-10
2.03401064553e-11 -6.94602195206e-10
2.06969504282e-11 -7.71841155225e-10
2.10537944011e-11 -8.21949841523e-10
2.1410638374e-11 -8.20469202995e-10
2.17674823469e-11 -7.57990066547e-10
2.21243263198e-11 -6.94393844508e-10
2.24811702927e-11 -6.66661108262e-10
2.28380142656e-11 -7.05045915747e-10
2.31948582385e-11 -7.67787167177e-10
2.35517022114e-11 -7.9665822203e-10
2.39085461843e-11 -7.65095532068e-10
2.42653901572e-11 -6.84804421502e-10
2.46222341301e-11 -6.43191219035e-10
2.4979078103e-11 -6.52810786331e-10
2.53359220759e-11 -7.13946714248e-10
3.56817448664e-13 -1.37269662998e-09
7.13634897328e-13 -1.09627114331e-09
1.07045234599e-12 1.18710492825e-09
1.42726979466e-12 8.39533548236e-09
1.78408724332e-12 2.46215958732e-08
2.14090469198e-12 5.35852731076e-08
2.49772214065e-12 9.48006984025e-08
2.85453958931e-12 1.37192826877e-07
3.21135703797e-12 1.52216367511e-07
3.56817448664e-12 9.09943786986e-08
3.9249919353e-12 -1.07118249382e-07
4.28180938397e-12 -4.90382404905e-07
4.63862683263e-12 -1.05573486309e-06
4.99544428129e-12 -1.70979565439e-06
5.35226172996e-12 -2.25385882402e-06
5.70907917862e-12 -2.4170437456e-06
6.06589662729e-12 -1.94544844589e-06
6.42271407595e-12 -7.23683164949e-07
6.77953152461e-12 1.12414778641e-06
7.13634897328e-12 3.21455449637e-06
7.49316642194e-12 4.99886934335e-06
7.8499838706e-12 5.94959138311e-06
8.20680131927e-12 5.76328679358e-06
8.56361876793e-12 4.48587559276e-06
8.9204362166e-12 2.49789128759e-06
9.27725366526e-12 3.65513258771e-07
9.63407111392e-12 -1.37189972094e-06
9.99088856259e-12 -2.3805118019e-06
1.03477060113e-11 -2.60564726773e-06
1.07045234599e-11 -2.22740351319e-06
1.10613409086e-11 -1.54104169781e-06
1.14181583572e-11 -8.28298116318e-07
1.17749758059e-11 -2.73153837327e-07
1.21317932546e-11 5.92198698968e-08
1.24886107032e-11 1.9443814292e-07
1.28454281519e-11 2.01046314707e-07
1.32022456006e-11 1.49076339717e-07
1.35590630492e-11 8.74907546411e-08
1.39158804979e-11 4.0164404691e-08
1.42726979466e-11 1.23320931245e-08
1.46295153952e-11 -1.17948650846e-10
1.49863328439e-11 -3.62072494209e-09
1.53431502925e-11 -3.3170947239e-09
1.56999677412e-11 -2.10484943364e-09
1.60567851899e-11 -1.15357433328e-09
1.64136026385e-11 -7.12525056318e-10
1.67704200872e-11 -8.75424427393e-10
1.71272375359e-11 -8.15994431747e-10
1.74840549845e-11 -7.34806358121e-10
1.78408724332e-11 -7.16105133525e-10
1.81976898819e-11 -7.50560277124e-10
1.85545073305e-11 -8.19087232068e-10
1.89113247792e-11 -8.41878910335e-10
1.92681422278e-11 -8.04535604804e-10
1.96249596765e-11 -7.2186476241e-10
1.99817771252e-11 -6.70319428436e-10
2.03385945738e-11 -6.760918006e-10
2.06954120225e-11 -7.37740823292e-10
2.10522294712e-11 -7.92367078201e-10
2.14090469198e-11 -7.94408688137e-10
2.17658643685e-11 -7.36121462397e-10
2.21226818172e-11 -6.61687492992e-10
2.24794992658e-11 -6.37218389166e-10
2.28363167145e-11 -6.76140015504e-10
2.31931341632e-11 -7.40282526251e-10
2.35499516118e-11 -7.71525052179e-10
2.39067690605e-11 -7.44350948934e-10
2.42635865091e-11 -6.74446352933e-10
2.46204039578e-11 -6.22732761191e-10
2.49772214065e-11 -6.30799301682e-10
2.53340388551e-11 -6.81641874889e-10

View File

@ -1,76 +1,76 @@
% time-domain voltage integration by openEMS v0.0.35-108-gc651cce @Wed May 21 16:09:30 2025
% start-coordinates: (-5.452e-05,-3.57575e-05,0.00015727) m -> [60,26,53]
% stop-coordinates: (-5.452e-05,-3.57575e-05,0.00016498) m -> [60,26,63]
% time-domain voltage integration by openEMS v0.0.36-93-g7b9cd51 @Tue Jan 20 10:01:58 2026
% start-coordinates: (-5.452e-05,-3.57575e-05,0.00015727) m -> [60,26,24]
% stop-coordinates: (-5.452e-05,-3.57575e-05,0.00016498) m -> [60,26,32]
% t/s voltage
0 -0
3.568439729e-13 -8.00469381751e-10
7.13687945801e-13 -1.11070143013e-09
1.0705319187e-12 -6.76356947879e-10
1.4273758916e-12 2.0264149872e-09
1.7842198645e-12 9.7232796259e-09
2.1410638374e-12 2.60520672257e-08
2.4979078103e-12 5.38476530032e-08
2.8547517832e-12 9.1459836149e-08
3.2115957561e-12 1.2700906149e-07
3.568439729e-12 1.32663816821e-07
3.9252837019e-12 6.33821817253e-08
4.2821276748e-12 -1.34182685851e-07
4.6389716477e-12 -4.98876133292e-07
4.9958156206e-12 -1.02116825218e-06
5.35265959351e-12 -1.61095938722e-06
5.70950356641e-12 -2.08797322898e-06
6.06634753931e-12 -2.21414294543e-06
6.42319151221e-12 -1.77176112715e-06
6.78003548511e-12 -6.66615683542e-07
7.13687945801e-12 9.89565510423e-07
7.49372343091e-12 2.86556522155e-06
7.85056740381e-12 4.49102435596e-06
8.20741137671e-12 5.41135510446e-06
8.56425534961e-12 5.35535448876e-06
8.92109932251e-12 4.34038530273e-06
9.27794329541e-12 2.66537665539e-06
9.63478726831e-12 7.95041275481e-07
9.99163124121e-12 -8.09988533135e-07
1.03484752141e-11 -1.84171175732e-06
1.0705319187e-11 -2.21413996826e-06
1.10621631599e-11 -2.03990462921e-06
1.14190071328e-11 -1.54290666643e-06
1.17758511057e-11 -9.56866653468e-07
1.21326950786e-11 -4.51881245311e-07
1.24895390515e-11 -1.07693164608e-07
1.28463830244e-11 7.31313665181e-08
1.32032269973e-11 1.32182384149e-07
1.35600709702e-11 1.22227575172e-07
1.39169149431e-11 8.6263356458e-08
1.4273758916e-11 4.99794502451e-08
1.46306028889e-11 2.38025591459e-08
1.49874468618e-11 8.69561128658e-09
1.53442908347e-11 1.69978153081e-09
1.57011348076e-11 -6.80649231422e-10
1.60579787805e-11 -9.88823238568e-10
1.64148227534e-11 -6.60816335679e-10
1.67716667263e-11 -5.0558204151e-10
1.71285106992e-11 -5.15399679532e-10
1.74853546721e-11 -5.50313867392e-10
1.7842198645e-11 -5.77175038666e-10
1.81990426179e-11 -5.85760972713e-10
1.85558865908e-11 -5.58988735508e-10
1.89127305637e-11 -5.29286297082e-10
1.92695745366e-11 -5.22788605808e-10
1.96264185095e-11 -5.43740314926e-10
1.99832624824e-11 -5.71950795752e-10
2.03401064553e-11 -5.92079010819e-10
2.06969504282e-11 -5.90355327124e-10
2.10537944011e-11 -5.65706644723e-10
2.1410638374e-11 -5.50211983613e-10
2.17674823469e-11 -5.45077025182e-10
2.21243263198e-11 -5.7034271056e-10
2.24811702927e-11 -6.00255317673e-10
2.28380142656e-11 -6.07429362018e-10
2.31948582385e-11 -6.06963731012e-10
2.35517022114e-11 -5.81077722397e-10
2.39085461843e-11 -5.55564233506e-10
2.42653901572e-11 -5.50452418022e-10
2.46222341301e-11 -5.80976086684e-10
2.4979078103e-11 -6.1813843974e-10
2.53359220759e-11 -6.23622046364e-10
3.56817448664e-13 -7.71698680652e-10
7.13634897328e-13 -1.07991754428e-09
1.07045234599e-12 -6.64071485301e-10
1.42726979466e-12 1.96275225239e-09
1.78408724332e-12 9.44188616181e-09
2.14090469198e-12 2.52464975592e-08
2.49772214065e-12 5.22167724615e-08
2.85453958931e-12 8.86909878872e-08
3.21135703797e-12 1.23191734147e-07
3.56817448664e-12 1.28716676429e-07
3.9249919353e-12 6.1623701697e-08
4.28180938397e-12 -1.29859539122e-07
4.63862683263e-12 -4.83441930044e-07
4.99544428129e-12 -9.89978609311e-07
5.35226172996e-12 -1.56212522029e-06
5.70907917862e-12 -2.02519132131e-06
6.06589662729e-12 -2.14822354394e-06
6.42271407595e-12 -1.72004918397e-06
6.77953152461e-12 -6.48941991699e-07
7.13634897328e-12 9.57059178575e-07
7.49316642194e-12 2.77696005924e-06
7.8499838706e-12 4.35468328419e-06
8.20680131927e-12 5.24907272847e-06
8.56361876793e-12 5.19663862519e-06
8.9204362166e-12 4.21362159386e-06
9.27725366526e-12 2.5895211877e-06
9.63407111392e-12 7.74967688244e-07
9.99088856259e-12 -7.83068458077e-07
1.03477060113e-11 -1.78540796014e-06
1.07045234599e-11 -2.14812637012e-06
1.10613409086e-11 -1.98010737051e-06
1.14181583572e-11 -1.49841248742e-06
1.17749758059e-11 -9.298046173e-07
1.21317932546e-11 -4.39516831818e-07
1.24886107032e-11 -1.05134088546e-07
1.28454281519e-11 7.07095115793e-08
1.32022456006e-11 1.28263169863e-07
1.35590630492e-11 1.1873015282e-07
1.39158804979e-11 8.38663862801e-08
1.42726979466e-11 4.86354383433e-08
1.46295153952e-11 2.3192228471e-08
1.49863328439e-11 8.50372400274e-09
1.53431502925e-11 1.6791755833e-09
1.56999677412e-11 -6.40681289271e-10
1.60567851899e-11 -9.50262084298e-10
1.64136026385e-11 -6.37334084813e-10
1.67704200872e-11 -4.90911512829e-10
1.71272375359e-11 -4.98737395133e-10
1.74840549845e-11 -5.3154825333e-10
1.78408724332e-11 -5.53310487705e-10
1.81976898819e-11 -5.65303207023e-10
1.85545073305e-11 -5.46280801844e-10
1.89113247792e-11 -5.19732465398e-10
1.92681422278e-11 -5.0494222692e-10
1.96249596765e-11 -5.23586410339e-10
1.99817771252e-11 -5.57457753569e-10
2.03385945738e-11 -5.78656157713e-10
2.06954120225e-11 -5.7453121774e-10
2.10522294712e-11 -5.53232112899e-10
2.14090469198e-11 -5.25695167952e-10
2.17658643685e-11 -5.27574071235e-10
2.21226818172e-11 -5.46919089878e-10
2.24794992658e-11 -5.76969125254e-10
2.28363167145e-11 -5.96407888354e-10
2.31931341632e-11 -5.88692813247e-10
2.35499516118e-11 -5.60369441821e-10
2.39067690605e-11 -5.44557197946e-10
2.42635865091e-11 -5.42120820457e-10
2.46204039578e-11 -5.6653612357e-10
2.49772214065e-11 -5.90681361462e-10
2.53340388551e-11 -6.00939867312e-10

View File

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<ContinuousStructure CoordSystem="0">
<RectilinearGrid DeltaUnit="1e-06" CoordSystem="0">
<XLines Qty="121">-116.535,-110.677745358801,-104.820490717603,-95.8093297311435,-88.8776674338671,-83.5456195128853,-79.4440441890531,-76.2889862476437,-73.8620186004057,-71.9951204102226,-70.5590448793126,-69.4543713939972,-68.6046225591391,-67.9509696092484,-67.4481596477939,-67.0613827543674,-66.7638620671163,-66.535,-66.335,-66.135,-65.835,-65.535,-65.235,-64.935,-64.735,-64.535,-64.2725,-64.035,-63.835,-63.635,-63.1725,-62.71,-61.785,-60.86,-60.3975,-59.935,-59.735,-59.535,-59.3373611111111,-59.1444444444444,-58.9491666666667,-58.7538888888889,-58.5586111111111,-58.3633333333333,-58.1680555555556,-57.9727777777778,-57.7775,-57.5822222222222,-57.3869444444444,-57.1916666666667,-56.9963888888889,-56.8011111111111,-56.6058333333333,-56.4105555555556,-56.2176388888889,-56.02,-55.82,-55.62,-55.17,-54.72,-54.52,-54.32,-53.87,-53.42,-53.22,-53.02,-52.8223611111111,-52.6294444444444,-52.4341666666667,-52.2388888888889,-52.0436111111111,-51.8483333333333,-51.6530555555556,-51.4577777777778,-51.2625,-51.0672222222222,-50.8719444444444,-50.6766666666667,-50.4813888888889,-50.2861111111111,-50.0908333333333,-49.8955555555556,-49.7026388888889,-49.505,-49.305,-49.105,-48.6425,-48.18,-47.255,-46.33,-45.8675,-45.405,-45.205,-45.005,-44.7425,-44.505,-44.305,-44.105,-43.805,-43.505,-43.205,-42.905,-42.705,-42.505,-42.2761379328837,-41.9786172456326,-41.5918403522061,-41.0890303907516,-40.4353774408608,-39.5856286060028,-38.4809551206874,-37.0448795897774,-35.1779813995943,-32.7510137523563,-29.5959558109469,-25.4943804871147,-20.1623325661329,-13.2306702688565,-4.21950928239713,1.63774535880143,7.495</XLines>
<YLines Qty="93">-88.02,-82.1627453588014,-76.3054907176029,-67.2943297311435,-60.3626674338671,-55.0306195128853,-50.9290441890531,-47.7739862476437,-45.3470186004057,-43.4801204102226,-42.0440448793126,-40.9393713939972,-40.0896225591392,-39.4359696092484,-38.9331596477939,-38.5463827543674,-38.2488620671163,-38.02,-37.82,-37.62,-37.32,-37.02,-36.72,-36.42,-36.22,-36.02,-35.7575,-35.52,-35.32,-35.12,-34.7959375,-34.471875,-33.82375,-32.5275,-31.23125,-30.583125,-30.2590625,-29.935,-29.735,-29.535,-29.3373611111111,-29.1444444444444,-28.9491666666667,-28.7538888888889,-28.5586111111111,-28.3633333333333,-28.1680555555556,-27.9727777777778,-27.7775,-27.5822222222222,-27.3869444444444,-27.1916666666667,-26.9963888888889,-26.8011111111111,-26.6058333333333,-26.4105555555556,-26.2176388888889,-26.02,-25.82,-25.62,-25.17,-24.72,-24.52,-24.32,-23.87,-23.42,-23.22,-23.02,-22.82,-22.62,-22.32,-22.02,-21.72,-21.42,-21.22,-21.02,-20.7911379328837,-20.4936172456326,-20.1068403522061,-19.6040303907516,-18.9503774408608,-18.1006286060028,-16.9959551206874,-15.5598795897774,-13.6929813995943,-11.2660137523563,-8.11095581094692,-4.00938048711473,1.32266743386713,8.25432973114354,17.2654907176029,23.1227453588014,28.98</YLines>
<ZLines Qty="111">0,8.85851353228373,17.7170270645675,28.1513836288385,38.5857401931096,49.0200967573807,59.4544533216517,69.8888098859228,80.3231664501939,90.757523014465,101.191879578736,111.626236143007,120.712489340775,127.701914877519,133.07839605963,137.2141508151,140.395500627,142.84269279,144.7251483,146.173191,147.28707,148.1439,148.803,149.31,149.7,150,150.197368421053,150.394736842105,150.592105263158,150.789473684211,150.986842105263,151.184210526316,151.381578947368,151.578947368421,151.776315789474,151.973684210526,152.171052631579,152.368421052632,152.565789473684,152.763157894737,152.960526315789,153.157894736842,153.355263157895,153.552631578947,153.75,154.27,154.79,155.75,156.265,156.5225,156.78,156.943333333333,157.106666666667,157.27,157.54,157.81,158.325,158.84,160.1803,162.5803,163.7803,164.3803,164.6803,164.9803,165.1803,165.3803,165.5803,165.7803,165.9803,166.1803,166.3803,166.5803,166.7803,166.9803,167.1803,167.3803,167.5803,167.7803,167.9803,168.3553,168.7303,169.1053,169.4803,169.613633333333,169.746966666667,169.8803,170.1803,170.5703,171.0773,171.7364,172.59323,173.707109,175.1551517,177.03760721,179.484799373,182.6661491849,186.80190394037,192.178385122481,199.167810659225,208.254063856993,218.688420421264,229.122776985535,239.557133549806,249.991490114077,260.425846678348,270.860203242619,281.29455980689,291.728916371162,302.163272935433,311.021786467716,319.8803</ZLines>
<XLines Qty="121">-116.535,-110.677745358801,-104.820490717603,-95.8093297311435,-88.8776674338671,-83.5456195128853,-79.4440441890531,-76.2889862476437,-73.8620186004057,-71.9951204102226,-70.5590448793126,-69.4543713939972,-68.6046225591391,-67.9509696092484,-67.4481596477939,-67.0613827543674,-66.7638620671163,-66.535,-66.335,-66.135,-65.835,-65.535,-65.235,-64.935,-64.735,-64.535,-64.2725,-64.035,-63.835,-63.635,-63.1725,-62.71,-61.785,-60.86,-60.3975,-59.935,-59.735,-59.535,-59.3373611111111,-59.1444444444444,-58.9491666666667,-58.7538888888889,-58.5586111111111,-58.3633333333333,-58.1680555555556,-57.9727777777778,-57.7775,-57.5822222222222,-57.3869444444444,-57.1916666666667,-56.9963888888889,-56.8011111111111,-56.6058333333333,-56.4105555555556,-56.2176388888889,-56.02,-55.82,-55.62,-55.345,-55.07,-54.52,-53.97,-53.695,-53.42,-53.22,-53.02,-52.8223611111111,-52.6294444444444,-52.4341666666667,-52.2388888888889,-52.0436111111111,-51.8483333333333,-51.6530555555556,-51.4577777777778,-51.2625,-51.0672222222222,-50.8719444444444,-50.6766666666667,-50.4813888888889,-50.2861111111111,-50.0908333333333,-49.8955555555556,-49.7026388888889,-49.505,-49.305,-49.105,-48.6425,-48.18,-47.255,-46.33,-45.8675,-45.405,-45.205,-45.005,-44.7425,-44.505,-44.305,-44.105,-43.805,-43.505,-43.205,-42.905,-42.705,-42.505,-42.2761379328837,-41.9786172456326,-41.5918403522061,-41.0890303907516,-40.4353774408608,-39.5856286060028,-38.4809551206874,-37.0448795897774,-35.1779813995943,-32.7510137523563,-29.5959558109469,-25.4943804871147,-20.1623325661329,-13.2306702688565,-4.21950928239713,1.63774535880143,7.495</XLines>
<YLines Qty="93">-88.02,-82.1627453588014,-76.3054907176029,-67.2943297311435,-60.3626674338671,-55.0306195128853,-50.9290441890531,-47.7739862476437,-45.3470186004057,-43.4801204102226,-42.0440448793126,-40.9393713939972,-40.0896225591392,-39.4359696092484,-38.9331596477939,-38.5463827543674,-38.2488620671163,-38.02,-37.82,-37.62,-37.32,-37.02,-36.72,-36.42,-36.22,-36.02,-35.7575,-35.52,-35.32,-35.12,-34.7959375,-34.471875,-33.82375,-32.5275,-31.23125,-30.583125,-30.2590625,-29.935,-29.735,-29.535,-29.3373611111111,-29.1444444444444,-28.9491666666667,-28.7538888888889,-28.5586111111111,-28.3633333333333,-28.1680555555556,-27.9727777777778,-27.7775,-27.5822222222222,-27.3869444444444,-27.1916666666667,-26.9963888888889,-26.8011111111111,-26.6058333333333,-26.4105555555556,-26.2176388888889,-26.02,-25.82,-25.62,-25.345,-25.07,-24.52,-23.97,-23.695,-23.42,-23.22,-23.02,-22.82,-22.62,-22.32,-22.02,-21.72,-21.42,-21.22,-21.02,-20.7911379328837,-20.4936172456326,-20.1068403522061,-19.6040303907516,-18.9503774408608,-18.1006286060028,-16.9959551206874,-15.5598795897774,-13.6929813995943,-11.2660137523563,-8.11095581094692,-4.00938048711473,1.32266743386713,8.25432973114354,17.2654907176029,23.1227453588014,28.98</YLines>
<ZLines Qty="64">0,9.375,18.75,28.125,37.5,46.875,56.25,65.625,75,84.375,93.75,103.125,112.5,121.875,131.25,140.625,150,153.75,155.265,156.0225,156.40125,156.78,156.943333333333,157.106666666667,157.27,157.75189375,158.2337875,159.197575,161.12515,163.052725,164.0165125,164.49840625,164.9803,165.1803,165.5053,165.8303,166.4803,167.1303,167.4553,167.7803,167.9803,168.3553,168.7303,169.4803,169.8803,171.052175,172.22405,174.5678,179.2553,188.6303,198.0053,207.3803,216.7553,226.1303,235.5053,244.8803,254.2553,263.6303,273.0053,282.3803,291.7553,301.1303,310.5053,319.8803</ZLines>
</RectilinearGrid>
<BackgroundMaterial Epsilon="1" Mue="1" Kappa="0" Sigma="0" />
<ParameterSet />
@ -112,9 +112,9 @@
<Property Epsilon="1.190000e+01,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="2.000000e+00,0.000000e+00,0.000000e+00" Sigma="0.000000e+00,0.000000e+00,0.000000e+00" Density="0.000000e+00" />
<Weight Epsilon="1.000000e+00,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="1.000000e+00,1.000000e+00,1.000000e+00" Sigma="1.000000e+00,1.000000e+00,1.000000e+00" Density="1.000000e+00" />
</Material>
<LumpedElement ID="7" Name="port_resist_1" Direction="2" Caps="1" R="5.000000e+01" C="nan" L="nan">
<FillColor R="62" G="1" B="126" a="255" />
<EdgeColor R="62" G="1" B="126" a="255" />
<LumpedElement ID="7" Name="port_resist_1" Direction="2" Caps="1" R="5.000000e+01" C="-nan(ind)" L="-nan(ind)" LEtype="0.000000e+00">
<FillColor R="18" G="73" B="50" a="255" />
<EdgeColor R="18" G="73" B="50" a="255" />
<Primitives>
<Box Priority="150">
<P1 X="-6.453500e+01" Y="-2.602000e+01" Z="1.572700e+02" />
@ -123,8 +123,8 @@
</Primitives>
</LumpedElement>
<ProbeBox ID="8" Name="port_ut_1" Number="0" Type="0" Weight="-1" NormDir="-1" StartTime="0" StopTime="0">
<FillColor R="151" G="234" B="220" a="255" />
<EdgeColor R="151" G="234" B="220" a="255" />
<FillColor R="246" G="158" B="125" a="255" />
<EdgeColor R="246" G="158" B="125" a="255" />
<Primitives>
<Box Priority="0">
<P1 X="-6.428500e+01" Y="-2.452000e+01" Z="1.572700e+02" />
@ -133,8 +133,8 @@
</Primitives>
</ProbeBox>
<ProbeBox ID="9" Name="port_it_1" Number="0" NormDir="2" Type="1" Weight="1" StartTime="0" StopTime="0">
<FillColor R="107" G="150" B="143" a="255" />
<EdgeColor R="107" G="150" B="143" a="255" />
<FillColor R="73" G="220" B="173" a="255" />
<EdgeColor R="73" G="220" B="173" a="255" />
<Primitives>
<Box Priority="0">
<P1 X="-6.453500e+01" Y="-2.602000e+01" Z="1.611252e+02" />
@ -142,9 +142,9 @@
</Box>
</Primitives>
</ProbeBox>
<LumpedElement ID="10" Name="port_resist_2" Direction="2" Caps="1" R="5.000000e+01" C="nan" L="nan">
<FillColor R="56" G="92" B="42" a="255" />
<EdgeColor R="56" G="92" B="42" a="255" />
<LumpedElement ID="10" Name="port_resist_2" Direction="2" Caps="1" R="5.000000e+01" C="-nan(ind)" L="-nan(ind)" LEtype="0.000000e+00">
<FillColor R="79" G="20" B="242" a="255" />
<EdgeColor R="79" G="20" B="242" a="255" />
<Primitives>
<Box Priority="150">
<P1 X="-4.500500e+01" Y="-2.602000e+01" Z="1.572700e+02" />
@ -152,9 +152,9 @@
</Box>
</Primitives>
</LumpedElement>
<Excitation ID="11" Name="port_excite_2" Number="0" Frequency="0.000000e+00" Delay="0.000000e+00" Type="0" Excite="0.000000e+00,0.000000e+00,-1.000000e+00" PropDir="0.000000e+00,0.000000e+00,0.000000e+00">
<FillColor R="236" G="176" B="59" a="255" />
<EdgeColor R="236" G="176" B="59" a="255" />
<Excitation ID="11" Name="port_excite_2" Number="0" Enabled="1" Frequency="0.000000e+00" Delay="0.000000e+00" Type="0" Excite="0.000000e+00,0.000000e+00,-1.000000e+00" PropDir="0.000000e+00,0.000000e+00,0.000000e+00">
<FillColor R="68" G="64" B="102" a="255" />
<EdgeColor R="68" G="64" B="102" a="255" />
<Primitives>
<Box Priority="150">
<P1 X="-4.500500e+01" Y="-2.602000e+01" Z="1.572700e+02" />
@ -164,8 +164,8 @@
<Weight X="1.000000e+00" Y="1.000000e+00" Z="1.000000e+00" />
</Excitation>
<ProbeBox ID="12" Name="port_ut_2" Number="0" Type="0" Weight="-1" NormDir="-1" StartTime="0" StopTime="0">
<FillColor R="251" G="50" B="175" a="255" />
<EdgeColor R="251" G="50" B="175" a="255" />
<FillColor R="208" G="107" B="196" a="255" />
<EdgeColor R="208" G="107" B="196" a="255" />
<Primitives>
<Box Priority="0">
<P1 X="-4.475500e+01" Y="-2.452000e+01" Z="1.572700e+02" />
@ -174,8 +174,8 @@
</Primitives>
</ProbeBox>
<ProbeBox ID="13" Name="port_it_2" Number="0" NormDir="2" Type="1" Weight="1" StartTime="0" StopTime="0">
<FillColor R="60" G="84" B="236" a="255" />
<EdgeColor R="60" G="84" B="236" a="255" />
<FillColor R="48" G="183" B="50" a="255" />
<EdgeColor R="48" G="183" B="50" a="255" />
<Primitives>
<Box Priority="0">
<P1 X="-4.500500e+01" Y="-2.602000e+01" Z="1.611252e+02" />
@ -183,9 +183,9 @@
</Box>
</Primitives>
</ProbeBox>
<LumpedElement ID="14" Name="port_resist_3" Direction="2" Caps="1" R="5.000000e+01" C="nan" L="nan">
<FillColor R="24" G="219" B="92" a="255" />
<EdgeColor R="24" G="219" B="92" a="255" />
<LumpedElement ID="14" Name="port_resist_3" Direction="2" Caps="1" R="5.000000e+01" C="-nan(ind)" L="-nan(ind)" LEtype="0.000000e+00">
<FillColor R="59" G="161" B="34" a="255" />
<EdgeColor R="59" G="161" B="34" a="255" />
<Primitives>
<Box Priority="150">
<P1 X="-5.602000e+01" Y="-3.602000e+01" Z="1.572700e+02" />
@ -194,8 +194,8 @@
</Primitives>
</LumpedElement>
<ProbeBox ID="15" Name="port_ut_3" Number="0" Type="0" Weight="-1" NormDir="-1" StartTime="0" StopTime="0">
<FillColor R="2" G="26" B="254" a="255" />
<EdgeColor R="2" G="26" B="254" a="255" />
<FillColor R="246" G="34" B="145" a="255" />
<EdgeColor R="246" G="34" B="145" a="255" />
<Primitives>
<Box Priority="0">
<P1 X="-5.452000e+01" Y="-3.577000e+01" Z="1.572700e+02" />
@ -204,8 +204,8 @@
</Primitives>
</ProbeBox>
<ProbeBox ID="16" Name="port_it_3" Number="0" NormDir="2" Type="1" Weight="1" StartTime="0" StopTime="0">
<FillColor R="67" G="251" B="250" a="255" />
<EdgeColor R="67" G="251" B="250" a="255" />
<FillColor R="157" G="225" B="139" a="255" />
<EdgeColor R="157" G="225" B="139" a="255" />
<Primitives>
<Box Priority="0">
<P1 X="-5.602000e+01" Y="-3.602000e+01" Z="1.611252e+02" />

View File

@ -0,0 +1 @@
a4df2dd41ddcadf43d886a784bdb231a3bb180a46b92ef5ffa8f535c5e406d1f

View File

@ -1,69 +1,72 @@
% time-domain current integration by openEMS v0.0.35-108-gc651cce @Wed May 21 16:12:00 2025
% start-coordinates: (-6.4735e-05,-2.62176e-05,0.00016018) m -> [24,56,58]
% stop-coordinates: (-6.4035e-05,-2.302e-05,0.00016018) m -> [27,67,58]
% time-domain current integration by openEMS v0.0.36-93-g7b9cd51 @Tue Jan 20 10:05:15 2026
% start-coordinates: (-6.4735e-05,-2.62176e-05,0.000159198) m -> [24,56,27]
% stop-coordinates: (-6.4035e-05,-2.302e-05,0.000159198) m -> [27,67,27]
% t/s current
1.58035417582e-16 0
3.57002008318e-13 1.62612388832e-11
7.13845981218e-13 2.23107730207e-11
1.07068995412e-12 1.29840842938e-11
1.42753392702e-12 -4.23036848607e-11
1.78437789992e-12 -1.98655022987e-10
2.14122187282e-12 -5.29069732469e-10
2.49806584572e-12 -1.08933218002e-09
2.85490981862e-12 -1.84384685298e-09
3.21175379152e-12 -2.549865874e-09
3.56859776442e-12 -2.64438004827e-09
3.92544173732e-12 -1.22081789122e-09
4.28228571022e-12 2.78700507117e-09
4.63912968312e-12 1.01448680567e-08
4.99597365602e-12 2.06374046741e-08
5.35281762892e-12 3.24282929398e-08
5.70966160182e-12 4.1881630608e-08
6.06650557472e-12 4.42267555911e-08
6.42334954762e-12 3.51371056695e-08
6.78019352052e-12 1.27936035099e-08
7.13703749342e-12 -2.04835082229e-08
7.49388146632e-12 -5.7996331293e-08
7.85072543922e-12 -9.0312340717e-08
8.20756941213e-12 -1.083801493e-07
8.56441338503e-12 -1.06872107608e-07
8.92125735793e-12 -8.6251603193e-08
9.27810133083e-12 -5.25875947233e-08
9.63494530373e-12 -1.52053605262e-08
9.99178927663e-12 1.67167453213e-08
1.03486332495e-11 3.70973509689e-08
1.07054772224e-11 4.43024994468e-08
1.10623211953e-11 4.06470768155e-08
1.14191651682e-11 3.06310141696e-08
1.17760091411e-11 1.89154292229e-08
1.2132853114e-11 8.86925466403e-09
1.24896970869e-11 2.05297556732e-09
1.28465410598e-11 -1.50620405037e-09
1.32033850327e-11 -2.65002841893e-09
1.35602290056e-11 -2.43335351868e-09
1.39170729785e-11 -1.71011238503e-09
1.42739169514e-11 -9.87068315972e-10
1.46307609243e-11 -4.68086625016e-10
1.49876048972e-11 -1.69791555815e-10
1.53444488701e-11 -3.23261209467e-11
1.5701292843e-11 1.40116659594e-11
1.60581368159e-11 1.97037421101e-11
1.64149807888e-11 1.30647159757e-11
1.67718247617e-11 1.01204591582e-11
1.71286687346e-11 1.03441040455e-11
1.74855127075e-11 1.10038592821e-11
1.78423566804e-11 1.15381168161e-11
1.81992006533e-11 1.1687362883e-11
1.85560446262e-11 1.11457856833e-11
1.89128885991e-11 1.05931834485e-11
1.9269732572e-11 1.04159840475e-11
1.96265765449e-11 1.08688743769e-11
1.99834205178e-11 1.14181598204e-11
2.03402644907e-11 1.18262908147e-11
2.06971084636e-11 1.17807369762e-11
2.10539524365e-11 1.13081384534e-11
2.14107964094e-11 1.0944241173e-11
2.17676403823e-11 1.08701988383e-11
2.21244843552e-11 1.1383182591e-11
2.24813283281e-11 1.20041129814e-11
2.2838172301e-11 1.21261611863e-11
1.64432003993e-16 0
3.56981880668e-13 1.56491573172e-11
7.13799329332e-13 2.16591900665e-11
1.070616778e-12 1.2903850731e-11
1.42743422666e-12 -4.07546253689e-11
1.78425167532e-12 -1.9228602044e-10
2.14106912399e-12 -5.1155135683e-10
2.49788657265e-12 -1.0544913831e-09
2.85470402131e-12 -1.78585946031e-09
3.21152146998e-12 -2.47191533909e-09
3.56833891864e-12 -2.56741761184e-09
3.92515636731e-12 -1.19430076939e-09
4.28197381597e-12 2.68222288824e-09
4.63879126463e-12 9.80704939479e-09
4.9956087133e-12 1.99767420384e-08
5.35242616196e-12 3.14162846848e-08
5.70924361063e-12 4.06064160074e-08
6.06606105929e-12 4.29199360497e-08
6.42287850795e-12 3.41557466754e-08
6.77969595662e-12 1.25329133738e-08
7.13651340528e-12 -1.9715995947e-08
7.49333085394e-12 -5.61101778374e-08
7.85014830261e-12 -8.75056258565e-08
8.20696575127e-12 -1.05112192728e-07
8.56378319994e-12 -1.03739679957e-07
8.9206006486e-12 -8.38100078226e-08
9.27741809726e-12 -5.11889695076e-08
9.63423554593e-12 -1.49163383867e-08
9.99105299459e-12 1.60967470464e-08
1.03478704433e-11 3.59314995535e-08
1.07046878919e-11 4.29815223413e-08
1.10615053406e-11 3.94768946421e-08
1.14183227892e-11 2.97779383374e-08
1.17751402379e-11 1.84092829869e-08
1.21319576866e-11 8.6479925443e-09
1.24887751352e-11 2.016982803e-09
1.28455925839e-11 -1.45148482122e-09
1.32024100326e-11 -2.57111554269e-09
1.35592274812e-11 -2.36537278653e-09
1.39160449299e-11 -1.66461955331e-09
1.42728623786e-11 -9.62180668473e-10
1.46296798272e-11 -4.57061610781e-10
1.49864972759e-11 -1.66539448898e-10
1.53433147245e-11 -3.21068553688e-11
1.57001321732e-11 1.31642613477e-11
1.60569496219e-11 1.88819290065e-11
1.64137670705e-11 1.25296951634e-11
1.67705845192e-11 9.79170997756e-12
1.71274019679e-11 9.94758008604e-12
1.74842194165e-11 1.07402151409e-11
1.78410368652e-11 1.10828542524e-11
1.81978543139e-11 1.12847457073e-11
1.85546717625e-11 1.08179454977e-11
1.89114892112e-11 1.03740419033e-11
1.92683066599e-11 1.01039454581e-11
1.96251241085e-11 1.04997521094e-11
1.99819415572e-11 1.11616237086e-11
2.03387590058e-11 1.15711945234e-11
2.06955764545e-11 1.14513381416e-11
2.10523939032e-11 1.10316807772e-11
2.14092113518e-11 1.04632830178e-11
2.17660288005e-11 1.05554428045e-11
2.21228462492e-11 1.09677787685e-11
2.24796636978e-11 1.15656286631e-11
2.28364811465e-11 1.19472409396e-11
2.31932985952e-11 1.17199236427e-11
2.35501160438e-11 1.11130661964e-11
2.39069334925e-11 1.08413460501e-11

View File

@ -1,69 +1,72 @@
% time-domain current integration by openEMS v0.0.35-108-gc651cce @Wed May 21 16:12:00 2025
% start-coordinates: (-4.5205e-05,-2.62176e-05,0.00016018) m -> [92,56,58]
% stop-coordinates: (-4.4505e-05,-2.302e-05,0.00016018) m -> [95,67,58]
% time-domain current integration by openEMS v0.0.36-93-g7b9cd51 @Tue Jan 20 10:05:15 2026
% start-coordinates: (-4.5205e-05,-2.62176e-05,0.000159198) m -> [92,56,27]
% stop-coordinates: (-4.4505e-05,-2.302e-05,0.000159198) m -> [95,67,27]
% t/s current
1.58035417582e-16 0
3.57002008318e-13 1.62609023469e-11
7.13845981218e-13 2.23108875125e-11
1.07068995412e-12 1.29841649585e-11
1.42753392702e-12 -4.23036675135e-11
1.78437789992e-12 -1.98654662165e-10
2.14122187282e-12 -5.29068011623e-10
2.49806584572e-12 -1.08932884935e-09
2.85490981862e-12 -1.84384230106e-09
3.21175379152e-12 -2.54986076698e-09
3.56859776442e-12 -2.64437627351e-09
3.92544173732e-12 -1.220821777e-09
4.28228571022e-12 2.78698464307e-09
4.63912968312e-12 1.01448227596e-08
4.99597365602e-12 2.06373336198e-08
5.35281762892e-12 3.2428204122e-08
5.70966160182e-12 4.18815666592e-08
6.06650557472e-12 4.42267413803e-08
6.42334954762e-12 3.51371767238e-08
6.78019352052e-12 1.27937855865e-08
7.13703749342e-12 -2.04832240058e-08
7.49388146632e-12 -5.79960115488e-08
7.85072543922e-12 -9.03120636053e-08
8.20756941213e-12 -1.08379978769e-07
8.56441338503e-12 -1.06872192873e-07
8.92125735793e-12 -8.62518731992e-08
9.27810133083e-12 -5.25880246016e-08
9.63494530373e-12 -1.52058259317e-08
9.99178927663e-12 1.6716345641e-08
1.03486332495e-11 3.70971129371e-08
1.07054772224e-11 4.43024426033e-08
1.10623211953e-11 4.06471727388e-08
1.14191651682e-11 3.06312273324e-08
1.17760091411e-11 1.89156690311e-08
1.2132853114e-11 8.86946782686e-09
1.24896970869e-11 2.05313033241e-09
1.28465410598e-11 -1.50611867422e-09
1.32033850327e-11 -2.64999999722e-09
1.35602290056e-11 -2.43336240047e-09
1.39170729785e-11 -1.71013836425e-09
1.42739169514e-11 -9.87097847904e-10
1.46307609243e-11 -4.68112937302e-10
1.49876048972e-11 -1.69809430406e-10
1.53444488701e-11 -3.23359845844e-11
1.5701292843e-11 1.40010737379e-11
1.60581368159e-11 1.96971917943e-11
1.64149807888e-11 1.30626559916e-11
1.67718247617e-11 1.01171779288e-11
1.71286687346e-11 1.03438880725e-11
1.74855127075e-11 1.10034698367e-11
1.78423566804e-11 1.15383449323e-11
1.81992006533e-11 1.16876014075e-11
1.85560446262e-11 1.11455939963e-11
1.89128885991e-11 1.05920428678e-11
1.9269732572e-11 1.04166215584e-11
1.96265765449e-11 1.08671856236e-11
1.99834205178e-11 1.14199674023e-11
2.03402644907e-11 1.18265380128e-11
2.06971084636e-11 1.17851874093e-11
2.10539524365e-11 1.13083691716e-11
2.14107964094e-11 1.09435316711e-11
2.17676403823e-11 1.08718390193e-11
2.21244843552e-11 1.13837507129e-11
2.24813283281e-11 1.20037348117e-11
2.2838172301e-11 1.21269036479e-11
1.64432003993e-16 0
3.56981880668e-13 1.56487930253e-11
7.13799329332e-13 2.16595422153e-11
1.070616778e-12 1.29031976076e-11
1.42743422666e-12 -4.07552012971e-11
1.78425167532e-12 -1.92285312672e-10
2.14106912399e-12 -5.11549247406e-10
2.49788657265e-12 -1.05448849652e-09
2.85470402131e-12 -1.78585624067e-09
3.21152146998e-12 -2.47190978797e-09
3.56833891864e-12 -2.567413393e-09
3.92515636731e-12 -1.19430254575e-09
4.28197381597e-12 2.6822057908e-09
4.63879126463e-12 9.80701031494e-09
4.9956087133e-12 1.99766834186e-08
5.35242616196e-12 3.14162065251e-08
5.70924361063e-12 4.06063449532e-08
6.06606105929e-12 4.29199076279e-08
6.42287850795e-12 3.41558035188e-08
6.77969595662e-12 1.25330741341e-08
7.13651340528e-12 -1.97157330462e-08
7.49333085394e-12 -5.61098651986e-08
7.85014830261e-12 -8.75053487448e-08
8.20696575127e-12 -1.05112022197e-07
8.56378319994e-12 -1.0373972259e-07
8.9206006486e-12 -8.3810263618e-08
9.27741809726e-12 -5.11893638588e-08
9.63423554593e-12 -1.49167860286e-08
9.99105299459e-12 1.6096361577e-08
1.03478704433e-11 3.5931257969e-08
1.07046878919e-11 4.29814583924e-08
1.10615053406e-11 3.94769870127e-08
1.14183227892e-11 2.97781337366e-08
1.17751402379e-11 1.84095121369e-08
1.21319576866e-11 8.64820393076e-09
1.24887751352e-11 2.01712802017e-09
1.28455925839e-11 -1.4514025537e-09
1.32024100326e-11 -2.57108601076e-09
1.35592274812e-11 -2.36537922582e-09
1.39160449299e-11 -1.66464331208e-09
1.42728623786e-11 -9.62204649291e-10
1.46296798272e-11 -4.57087367955e-10
1.49864972759e-11 -1.66558836168e-10
1.53433147245e-11 -3.21170139095e-11
1.57001321732e-11 1.31582201732e-11
1.60569496219e-11 1.88780657773e-11
1.64137670705e-11 1.25267626133e-11
1.67705845192e-11 9.79181145888e-12
1.71274019679e-11 9.945400406e-12
1.74842194165e-11 1.07405421362e-11
1.78410368652e-11 1.10810414664e-11
1.81978543139e-11 1.12842764646e-11
1.85546717625e-11 1.08177685559e-11
1.89114892112e-11 1.0371163997e-11
1.92683066599e-11 1.01059291144e-11
1.96251241085e-11 1.04978109539e-11
1.99819415572e-11 1.11608951248e-11
2.03387590058e-11 1.1571224881e-11
2.06955764545e-11 1.14513589583e-11
2.10523939032e-11 1.10311716359e-11
2.14092113518e-11 1.04631112802e-11
2.17660288005e-11 1.05554757643e-11
2.21228462492e-11 1.09674110071e-11
2.24796636978e-11 1.15666564868e-11
2.28364811465e-11 1.19460673992e-11
2.31932985952e-11 1.17214285153e-11
2.35501160438e-11 1.11142102466e-11
2.39069334925e-11 1.08408516539e-11

View File

@ -1,69 +1,72 @@
% time-domain current integration by openEMS v0.0.35-108-gc651cce @Wed May 21 16:12:00 2025
% start-coordinates: (-5.62176e-05,-3.622e-05,0.00016018) m -> [54,24,58]
% stop-coordinates: (-5.302e-05,-3.552e-05,0.00016018) m -> [65,27,58]
% time-domain current integration by openEMS v0.0.36-93-g7b9cd51 @Tue Jan 20 10:05:15 2026
% start-coordinates: (-5.62176e-05,-3.622e-05,0.000159198) m -> [54,24,27]
% stop-coordinates: (-5.302e-05,-3.552e-05,0.000159198) m -> [65,27,27]
% t/s current
1.58035417582e-16 0
3.57002008318e-13 -3.45343753594e-11
7.13845981218e-13 -4.29101337796e-11
1.07068995412e-12 -9.78453169181e-12
1.42753392702e-12 1.36291214425e-10
1.78437789992e-12 5.14167319832e-10
2.14122187282e-12 1.26560217861e-09
2.49806584572e-12 2.47483655791e-09
2.85490981862e-12 3.99650179617e-09
3.21175379152e-12 5.22067233888e-09
3.56859776442e-12 4.87793139214e-09
3.92544173732e-12 1.06392172849e-09
4.28228571022e-12 -8.27771984291e-09
4.63912968312e-12 -2.43358950769e-08
4.99597365602e-12 -4.60549003378e-08
5.35281762892e-12 -6.90157264671e-08
5.70966160182e-12 -8.53980495208e-08
6.06650557472e-12 -8.57006909882e-08
6.42334954762e-12 -6.21489277819e-08
6.78019352052e-12 -1.27167858466e-08
7.13703749342e-12 5.61223032491e-08
7.49388146632e-12 1.29685631123e-07
7.85072543922e-12 1.8903359944e-07
8.20756941213e-12 2.17391999513e-07
8.56441338503e-12 2.0640869991e-07
8.92125735793e-12 1.593881791e-07
9.27810133083e-12 8.99882053318e-08
9.63494530373e-12 1.70004668121e-08
9.99178927663e-12 -4.23583301767e-08
1.03486332495e-11 -7.77271083052e-08
1.07054772224e-11 -8.75264447586e-08
1.10623211953e-11 -7.73895862949e-08
1.14191651682e-11 -5.64752120624e-08
1.17760091411e-11 -3.36213048513e-08
1.2132853114e-11 -1.48239998055e-08
1.24896970869e-11 -2.54875787142e-09
1.28465410598e-11 3.5390679276e-09
1.32033850327e-11 5.23189713775e-09
1.35602290056e-11 4.569058909e-09
1.39170729785e-11 3.11370795814e-09
1.42739169514e-11 1.75136405378e-09
1.46307609243e-11 8.07860667251e-10
1.49876048972e-11 2.81142775727e-10
1.53444488701e-11 4.47535654369e-11
1.5701292843e-11 -3.09437787893e-11
1.60581368159e-11 -3.75723029078e-11
1.64149807888e-11 -2.48045646523e-11
1.67718247617e-11 -2.07893754295e-11
1.71286687346e-11 -2.03213956079e-11
1.74855127075e-11 -2.13288848389e-11
1.78423566804e-11 -2.27482338522e-11
1.81992006533e-11 -2.34353630252e-11
1.85560446262e-11 -2.28901897437e-11
1.89128885991e-11 -2.20230483156e-11
1.9269732572e-11 -2.11830327584e-11
1.96265765449e-11 -2.1395173827e-11
1.99834205178e-11 -2.23957918183e-11
2.03402644907e-11 -2.38488222226e-11
2.06971084636e-11 -2.41522808697e-11
2.10539524365e-11 -2.36037942664e-11
2.14107964094e-11 -2.23495267432e-11
2.17676403823e-11 -2.1848346049e-11
2.21244843552e-11 -2.20325840905e-11
2.24813283281e-11 -2.34053592479e-11
2.2838172301e-11 -2.44513940345e-11
1.64432003993e-16 0
3.56981880668e-13 -3.35508877625e-11
7.13799329332e-13 -4.14515505254e-11
1.070616778e-12 -9.42598343129e-12
1.42743422666e-12 1.33517030765e-10
1.78425167532e-12 5.00145092008e-10
2.14106912399e-12 1.23021881571e-09
2.49788657265e-12 2.40347053371e-09
2.85470402131e-12 3.87922050038e-09
3.21152146998e-12 5.06495201336e-09
3.56833891864e-12 4.72802152984e-09
3.92515636731e-12 1.0193041966e-09
4.28197381597e-12 -8.05323896458e-09
4.63879126463e-12 -2.36383463914e-08
4.9956087133e-12 -4.47095303002e-08
5.35242616196e-12 -6.69747493021e-08
5.70924361063e-12 -8.28467250358e-08
6.06606105929e-12 -8.31110327226e-08
6.42287850795e-12 -6.0236658328e-08
6.77969595662e-12 -1.22657644042e-08
7.13651340528e-12 5.45127853968e-08
7.49333085394e-12 1.25855606825e-07
7.85014830261e-12 1.83395229669e-07
8.20696575127e-12 2.10873636775e-07
8.56378319994e-12 2.00197774802e-07
8.9206006486e-12 1.54579311129e-07
9.27741809726e-12 8.72653203032e-08
9.63423554593e-12 1.6478146847e-08
9.99105299459e-12 -4.10905300896e-08
1.03478704433e-11 -7.53936433284e-08
1.07046878919e-11 -8.49010035608e-08
1.10615053406e-11 -7.50737001454e-08
1.14183227892e-11 -5.47922383021e-08
1.17751402379e-11 -3.26258629002e-08
1.21319576866e-11 -1.43912153305e-08
1.24887751352e-11 -2.4798085807e-09
1.28455925839e-11 3.42982531265e-09
1.32024100326e-11 5.07582020859e-09
1.35592274812e-11 4.4347228112e-09
1.39160449299e-11 3.02368530214e-09
1.42728623786e-11 1.70247171916e-09
1.46296798272e-11 7.86308518297e-10
1.49864972759e-11 2.74391759314e-10
1.53433147245e-11 4.47580791874e-11
1.57001321732e-11 -2.92102141086e-11
1.60569496219e-11 -3.58392968081e-11
1.64137670705e-11 -2.36575498774e-11
1.67705845192e-11 -1.99036741949e-11
1.71274019679e-11 -1.95963158894e-11
1.74842194165e-11 -2.08284813008e-11
1.78410368652e-11 -2.20764621861e-11
1.81978543139e-11 -2.27615547937e-11
1.85546717625e-11 -2.22779433789e-11
1.89114892112e-11 -2.13559551987e-11
1.92683066599e-11 -2.03732135329e-11
1.96251241085e-11 -2.07622096599e-11
1.99819415572e-11 -2.16213488086e-11
2.03387590058e-11 -2.31006654777e-11
2.06955764545e-11 -2.37863392177e-11
2.10523939032e-11 -2.29107427474e-11
2.14092113518e-11 -2.18305790112e-11
2.17660288005e-11 -2.10919927357e-11
2.21228462492e-11 -2.15602934811e-11
2.24796636978e-11 -2.27727749852e-11
2.28364811465e-11 -2.37028625893e-11
2.31932985952e-11 -2.38735888697e-11
2.35501160438e-11 -2.2773146216e-11
2.39069334925e-11 -2.2091268051e-11

View File

@ -1,69 +1,72 @@
% time-domain voltage integration by openEMS v0.0.35-108-gc651cce @Wed May 21 16:12:00 2025
% start-coordinates: (-6.42725e-05,-2.452e-05,0.00015727) m -> [26,62,53]
% stop-coordinates: (-6.42725e-05,-2.452e-05,0.00016498) m -> [26,62,63]
% time-domain voltage integration by openEMS v0.0.36-93-g7b9cd51 @Tue Jan 20 10:05:15 2026
% start-coordinates: (-6.42725e-05,-2.452e-05,0.00015727) m -> [26,62,24]
% stop-coordinates: (-6.42725e-05,-2.452e-05,0.00016498) m -> [26,62,32]
% t/s voltage
0 -0
3.568439729e-13 -8.08994118223e-10
7.13687945801e-13 -1.11066921979e-09
1.0705319187e-12 -6.78010413438e-10
1.4273758916e-12 2.02484135708e-09
1.7842198645e-12 9.71903374447e-09
2.1410638374e-12 2.60407668207e-08
2.4979078103e-12 5.38250564119e-08
2.8547517832e-12 9.14254869588e-08
3.2115957561e-12 1.26968324743e-07
3.568439729e-12 1.32634951466e-07
3.9252837019e-12 6.33951664497e-08
4.2821276748e-12 -1.34080674119e-07
4.6389716477e-12 -4.98634268098e-07
4.9958156206e-12 -1.02075497921e-06
5.35265959351e-12 -1.61038767033e-06
5.70950356641e-12 -2.08732569718e-06
6.06634753931e-12 -2.21356983587e-06
6.42319151221e-12 -1.77145229685e-06
6.78003548511e-12 -6.66748936951e-07
7.13687945801e-12 9.88893685161e-07
7.49372343091e-12 2.86438590535e-06
7.85056740381e-12 4.48951058729e-06
8.20741137671e-12 5.40977559638e-06
8.56425534961e-12 5.35400008062e-06
8.92109932251e-12 4.33948017076e-06
9.27794329541e-12 2.66501393043e-06
9.63478726831e-12 7.95175528978e-07
9.99163124121e-12 -8.09509478117e-07
1.03484752141e-11 -1.84107919665e-06
1.0705319187e-11 -2.21352403429e-06
1.10621631599e-11 -2.0394178577e-06
1.14190071328e-11 -1.54258930962e-06
1.17758511057e-11 -9.5670507605e-07
1.21326950786e-11 -4.51831857262e-07
1.24895390515e-11 -1.07706259023e-07
1.28463830244e-11 7.30942035787e-08
1.32032269973e-11 1.32144253318e-07
1.35600709702e-11 1.2219978629e-07
1.39169149431e-11 8.62460116657e-08
1.4273758916e-11 4.9970061311e-08
1.46306028889e-11 2.37975692485e-08
1.49874468618e-11 8.69232569256e-09
1.53442908347e-11 1.69864775024e-09
1.57011348076e-11 -6.80463779074e-10
1.60579787805e-11 -9.8948173613e-10
1.64148227534e-11 -6.60993431864e-10
1.67716667263e-11 -5.06197691402e-10
1.71285106992e-11 -5.15709230528e-10
1.74853546721e-11 -5.50228095725e-10
1.7842198645e-11 -5.77415814815e-10
1.81990426179e-11 -5.86652101897e-10
1.85558865908e-11 -5.59311643875e-10
1.89127305637e-11 -5.29394450152e-10
1.92695745366e-11 -5.22977839854e-10
1.96264185095e-11 -5.4326373955e-10
1.99832624824e-11 -5.72151886633e-10
2.03401064553e-11 -5.92273485464e-10
2.06969504282e-11 -5.91170100719e-10
2.10537944011e-11 -5.65205946282e-10
2.1410638374e-11 -5.49904973987e-10
2.17674823469e-11 -5.45091267262e-10
2.21243263198e-11 -5.703394753e-10
2.24811702927e-11 -6.00309137469e-10
2.28380142656e-11 -6.07831129179e-10
3.56817448664e-13 -7.80448584231e-10
7.13634897328e-13 -1.08242445562e-09
1.07045234599e-12 -6.6655898856e-10
1.42726979466e-12 1.96035634947e-09
1.78408724332e-12 9.43703593048e-09
2.14090469198e-12 2.52331442407e-08
2.49772214065e-12 5.219364696e-08
2.85453958931e-12 8.86589903715e-08
3.21135703797e-12 1.23149665576e-07
3.56817448664e-12 1.28688011358e-07
3.9249919353e-12 6.16375421814e-08
4.28180938397e-12 -1.29758652712e-07
4.63862683263e-12 -4.83208097535e-07
4.99544428129e-12 -9.89580094313e-07
5.35226172996e-12 -1.56157805975e-06
5.70907917862e-12 -2.02456999432e-06
6.06589662729e-12 -2.14767273121e-06
6.42271407595e-12 -1.71975420216e-06
6.77953152461e-12 -6.49070525327e-07
7.13634897328e-12 9.56411156494e-07
7.49316642194e-12 2.77582333297e-06
7.8499838706e-12 4.35322647263e-06
8.20680131927e-12 5.24755398601e-06
8.56361876793e-12 5.19533836041e-06
8.9204362166e-12 4.2127519464e-06
9.27725366526e-12 2.58917414442e-06
9.63407111392e-12 7.75099195494e-07
9.99088856259e-12 -7.82605702909e-07
1.03477060113e-11 -1.78479951529e-06
1.07045234599e-11 -2.14753588068e-06
1.10613409086e-11 -1.97964119764e-06
1.14181583572e-11 -1.49810968253e-06
1.17749758059e-11 -9.29649985437e-07
1.21317932546e-11 -4.3947017403e-07
1.24886107032e-11 -1.05146930274e-07
1.28454281519e-11 7.06749565538e-08
1.32022456006e-11 1.28227139129e-07
1.35590630492e-11 1.18702413676e-07
1.39158804979e-11 8.38504701228e-08
1.42726979466e-11 4.86263365129e-08
1.46295153952e-11 2.31887492541e-08
1.49863328439e-11 8.50249193274e-09
1.53431502925e-11 1.67929659761e-09
1.56999677412e-11 -6.41349213321e-10
1.60567851899e-11 -9.51053097387e-10
1.64136026385e-11 -6.37223298433e-10
1.67704200872e-11 -4.90942415193e-10
1.71272375359e-11 -4.98308852515e-10
1.74840549845e-11 -5.31497588996e-10
1.78408724332e-11 -5.53870175418e-10
1.81976898819e-11 -5.65271853631e-10
1.85545073305e-11 -5.45981992256e-10
1.89113247792e-11 -5.19638578694e-10
1.92681422278e-11 -5.05645924437e-10
1.96249596765e-11 -5.23536571734e-10
1.99817771252e-11 -5.57230726839e-10
2.03385945738e-11 -5.79285286406e-10
2.06954120225e-11 -5.74820271243e-10
2.10522294712e-11 -5.52736714038e-10
2.14090469198e-11 -5.25461962136e-10
2.17658643685e-11 -5.27411666423e-10
2.21226818172e-11 -5.46634501553e-10
2.24794992658e-11 -5.77001266211e-10
2.28363167145e-11 -5.97120290713e-10
2.31931341632e-11 -5.89195962852e-10
2.35499516118e-11 -5.60339229877e-10
2.39067690605e-11 -5.44401707742e-10

View File

@ -1,69 +1,72 @@
% time-domain voltage integration by openEMS v0.0.35-108-gc651cce @Wed May 21 16:12:00 2025
% start-coordinates: (-4.47425e-05,-2.452e-05,0.00015727) m -> [94,62,53]
% stop-coordinates: (-4.47425e-05,-2.452e-05,0.00016498) m -> [94,62,63]
% time-domain voltage integration by openEMS v0.0.36-93-g7b9cd51 @Tue Jan 20 10:05:15 2026
% start-coordinates: (-4.47425e-05,-2.452e-05,0.00015727) m -> [94,62,24]
% stop-coordinates: (-4.47425e-05,-2.452e-05,0.00016498) m -> [94,62,32]
% t/s voltage
0 -0
3.568439729e-13 -8.08613086212e-10
7.13687945801e-13 -1.1105335887e-09
1.0705319187e-12 -6.78767191759e-10
1.4273758916e-12 2.02314367342e-09
1.7842198645e-12 9.71439897968e-09
2.1410638374e-12 2.60325714319e-08
2.4979078103e-12 5.38122211236e-08
2.8547517832e-12 9.1410673031e-08
3.2115957561e-12 1.26959307511e-07
3.568439729e-12 1.32645449291e-07
3.9252837019e-12 6.34445183056e-08
4.2821276748e-12 -1.33973330652e-07
4.6389716477e-12 -4.98463425203e-07
4.9958156206e-12 -1.02053864381e-06
5.35265959351e-12 -1.61017920064e-06
5.70950356641e-12 -2.08720772576e-06
6.06634753931e-12 -2.21363185204e-06
6.42319151221e-12 -1.77175576255e-06
6.78003548511e-12 -6.67289109302e-07
7.13687945801e-12 9.88206274144e-07
7.49372343091e-12 2.86371078317e-06
7.85056740381e-12 4.48903021777e-06
8.20741137671e-12 5.40962976459e-06
8.56425534961e-12 5.35423365022e-06
8.92109932251e-12 4.34002366489e-06
9.27794329541e-12 2.6657122163e-06
9.63478726831e-12 7.95845231494e-07
9.99163124121e-12 -8.0901560473e-07
1.03484752141e-11 -1.84083201304e-06
1.0705319187e-11 -2.21351138663e-06
1.10621631599e-11 -2.03956803091e-06
1.14190071328e-11 -1.54281072184e-06
1.17758511057e-11 -9.56919603112e-07
1.21326950786e-11 -4.51993718897e-07
1.24895390515e-11 -1.07802790694e-07
1.28463830244e-11 7.30533149529e-08
1.32032269973e-11 1.32138951336e-07
1.35600709702e-11 1.22211660791e-07
1.39169149431e-11 8.62616544861e-08
1.4273758916e-11 4.99829811984e-08
1.46306028889e-11 2.38061418356e-08
1.49874468618e-11 8.69698379979e-09
1.53442908347e-11 1.70090054541e-09
1.57011348076e-11 -6.7952493632e-10
1.60579787805e-11 -9.89131446888e-10
1.64148227534e-11 -6.60803231578e-10
1.67716667263e-11 -5.05974319734e-10
1.71285106992e-11 -5.15522033048e-10
1.74853546721e-11 -5.4999278222e-10
1.7842198645e-11 -5.77194533488e-10
1.81990426179e-11 -5.86609344433e-10
1.85558865908e-11 -5.59249513019e-10
1.89127305637e-11 -5.29386486037e-10
1.92695745366e-11 -5.22983498522e-10
1.96264185095e-11 -5.43229947136e-10
1.99832624824e-11 -5.72078818345e-10
2.03401064553e-11 -5.92232792321e-10
2.06969504282e-11 -5.91078337317e-10
2.10537944011e-11 -5.65262564187e-10
2.1410638374e-11 -5.49885251916e-10
2.17674823469e-11 -5.45023555801e-10
2.21243263198e-11 -5.70380277731e-10
2.24811702927e-11 -6.00122063155e-10
2.28380142656e-11 -6.07789233872e-10
3.56817448664e-13 -7.80125929134e-10
7.13634897328e-13 -1.08228617735e-09
1.07045234599e-12 -6.67018627831e-10
1.42726979466e-12 1.9587793193e-09
1.78408724332e-12 9.43245631602e-09
2.14090469198e-12 2.52247778221e-08
2.49772214065e-12 5.21811824861e-08
2.85453958931e-12 8.86450370885e-08
3.21135703797e-12 1.23140811326e-07
3.56817448664e-12 1.28698037116e-07
3.9249919353e-12 6.16854252122e-08
4.28180938397e-12 -1.29655351344e-07
4.63862683263e-12 -4.83043304911e-07
4.99544428129e-12 -9.89371486071e-07
5.35226172996e-12 -1.56137640772e-06
5.70907917862e-12 -2.02445561115e-06
6.06589662729e-12 -2.14773211837e-06
6.42271407595e-12 -1.72004681076e-06
6.77953152461e-12 -6.49591655133e-07
7.13634897328e-12 9.55747410103e-07
7.49316642194e-12 2.77517111158e-06
7.8499838706e-12 4.35276166399e-06
8.20680131927e-12 5.24741250274e-06
8.56361876793e-12 5.19556238032e-06
8.9204362166e-12 4.21327507638e-06
9.27725366526e-12 2.58984748314e-06
9.63407111392e-12 7.75745469639e-07
9.99088856259e-12 -7.82128772414e-07
1.03477060113e-11 -1.78456045319e-06
1.07045234599e-11 -2.14752240879e-06
1.10613409086e-11 -1.97978526728e-06
1.14181583572e-11 -1.49832246876e-06
1.17749758059e-11 -9.29856518894e-07
1.21317932546e-11 -4.39626175464e-07
1.24886107032e-11 -1.05239916337e-07
1.28454281519e-11 7.06353393554e-08
1.32022456006e-11 1.28221960161e-07
1.35590630492e-11 1.1871377481e-07
1.39158804979e-11 8.38652693957e-08
1.42726979466e-11 4.86389555299e-08
1.46295153952e-11 2.31970141984e-08
1.49863328439e-11 8.50693870902e-09
1.53431502925e-11 1.68139215745e-09
1.56999677412e-11 -6.40595403112e-10
1.60567851899e-11 -9.5088520391e-10
1.64136026385e-11 -6.37165719491e-10
1.67704200872e-11 -4.90778782197e-10
1.71272375359e-11 -4.98155568879e-10
1.74840549845e-11 -5.31529611991e-10
1.78408724332e-11 -5.53715882173e-10
1.81976898819e-11 -5.65197170316e-10
1.85545073305e-11 -5.45933673268e-10
1.89113247792e-11 -5.1947932761e-10
1.92681422278e-11 -5.05655715216e-10
1.96249596765e-11 -5.23455213203e-10
1.99817771252e-11 -5.5708969382e-10
2.03385945738e-11 -5.79241467291e-10
2.06954120225e-11 -5.7467462386e-10
2.10522294712e-11 -5.52840231927e-10
2.14090469198e-11 -5.25435955162e-10
2.17658643685e-11 -5.27298121833e-10
2.21226818172e-11 -5.46661375889e-10
2.24794992658e-11 -5.7691413452e-10
2.28363167145e-11 -5.97154298232e-10
2.31931341632e-11 -5.89138134111e-10
2.35499516118e-11 -5.60247945258e-10
2.39067690605e-11 -5.44387229739e-10

View File

@ -1,69 +1,72 @@
% time-domain voltage integration by openEMS v0.0.35-108-gc651cce @Wed May 21 16:12:00 2025
% start-coordinates: (-5.452e-05,-3.57575e-05,0.00015727) m -> [60,26,53]
% stop-coordinates: (-5.452e-05,-3.57575e-05,0.00016498) m -> [60,26,63]
% time-domain voltage integration by openEMS v0.0.36-93-g7b9cd51 @Tue Jan 20 10:05:15 2026
% start-coordinates: (-5.452e-05,-3.57575e-05,0.00015727) m -> [60,26,24]
% stop-coordinates: (-5.452e-05,-3.57575e-05,0.00016498) m -> [60,26,32]
% t/s voltage
0 -0
3.568439729e-13 -1.32847541301e-09
7.13687945801e-13 -1.11710525205e-09
1.0705319187e-12 1.13567250395e-09
1.4273758916e-12 8.27825705207e-09
1.7842198645e-12 2.43489723384e-08
2.1410638374e-12 5.31295920592e-08
2.4979078103e-12 9.42773503709e-08
2.8547517832e-12 1.36955857766e-07
3.2115957561e-12 1.53042619022e-07
3.568439729e-12 9.40696547325e-08
3.9252837019e-12 -1.00621171839e-07
4.2821276748e-12 -4.80095167177e-07
4.6389716477e-12 -1.04329557615e-06
4.9958156206e-12 -1.70013698408e-06
5.35265959351e-12 -2.25523879038e-06
5.70950356641e-12 -2.43945597589e-06
6.06634753931e-12 -1.99663507061e-06
6.42319151221e-12 -8.04131886412e-07
6.78003548511e-12 1.02547465985e-06
7.13687945801e-12 3.12071133379e-06
7.49372343091e-12 4.94004001439e-06
7.85056740381e-12 5.95346200782e-06
8.20741137671e-12 5.84423457894e-06
8.56425534961e-12 4.63744572698e-06
8.92109932251e-12 2.69286483956e-06
9.27794329541e-12 5.63934179354e-07
9.63478726831e-12 -1.20976837437e-06
9.99163124121e-12 -2.28173643535e-06
1.03484752141e-11 -2.57766922118e-06
1.0705319187e-11 -2.25892060257e-06
1.10621631599e-11 -1.60898799351e-06
1.14190071328e-11 -9.07313076226e-07
1.17758511057e-11 -3.43342911435e-07
1.21326950786e-11 8.48237835527e-09
1.24895390515e-11 1.64966384553e-07
1.28463830244e-11 1.888020007e-07
1.32032269973e-11 1.47795482963e-07
1.35600709702e-11 9.13744744313e-08
1.39169149431e-11 4.52364047332e-08
1.4273758916e-11 1.65382773032e-08
1.46306028889e-11 2.59070453978e-09
1.49874468618e-11 -2.20435214526e-09
1.53442908347e-11 -2.68787145319e-09
1.57011348076e-11 -1.85603372949e-09
1.60579787805e-11 -1.02145405328e-09
1.64148227534e-11 -6.33938236974e-10
1.67716667263e-11 -8.3960800118e-10
1.71285106992e-11 -8.59697833755e-10
1.74853546721e-11 -8.10991655775e-10
1.7842198645e-11 -7.43087324312e-10
1.81990426179e-11 -7.0589897469e-10
1.85558865908e-11 -7.31796772485e-10
1.89127305637e-11 -7.75746472267e-10
1.92695745366e-11 -8.19686847911e-10
1.96264185095e-11 -8.07390466984e-10
1.99832624824e-11 -7.57990866254e-10
2.03401064553e-11 -6.85669299116e-10
2.06969504282e-11 -6.71149915157e-10
2.10537944011e-11 -6.96919475254e-10
2.1410638374e-11 -7.63124174963e-10
2.17674823469e-11 -7.86141466161e-10
2.21243263198e-11 -7.76346636283e-10
2.24811702927e-11 -7.08340261446e-10
2.28380142656e-11 -6.58607411663e-10
3.56817448664e-13 -1.28587487186e-09
7.13634897328e-13 -1.08363747142e-09
1.07045234599e-12 1.08938699728e-09
1.42726979466e-12 7.99827332143e-09
1.78408724332e-12 2.3603786703e-08
2.14090469198e-12 5.14907361193e-08
2.49772214065e-12 9.13948725589e-08
2.85453958931e-12 1.32798645858e-07
3.21135703797e-12 1.48435509217e-07
3.56817448664e-12 9.13281659187e-08
3.9249919353e-12 -9.7250921538e-08
4.28180938397e-12 -4.64950790757e-07
4.63862683263e-12 -1.0108982309e-06
4.99544428129e-12 -1.64779445555e-06
5.35226172996e-12 -2.18643945971e-06
5.70907917862e-12 -2.36590953762e-06
6.06589662729e-12 -1.93783203883e-06
6.42271407595e-12 -7.82840075431e-07
6.77953152461e-12 9.90291141534e-07
7.13634897328e-12 3.02193654989e-06
7.49316642194e-12 4.78726849451e-06
7.8499838706e-12 5.77230184717e-06
8.20680131927e-12 5.66919899825e-06
8.56361876793e-12 4.50152128906e-06
8.9204362166e-12 2.61733575257e-06
9.27725366526e-12 5.52909561691e-07
9.63407111392e-12 -1.16841752629e-06
9.99088856259e-12 -2.21002416367e-06
1.03477060113e-11 -2.49919087025e-06
1.07045234599e-11 -2.19174280858e-06
1.10613409086e-11 -1.56230187542e-06
1.14181583572e-11 -8.81906085937e-07
1.17749758059e-11 -3.34577684669e-07
1.21317932546e-11 7.21755455402e-09
1.24886107032e-11 1.59487797191e-07
1.28454281519e-11 1.82956648942e-07
1.32022456006e-11 1.43346751358e-07
1.35590630492e-11 8.8681553212e-08
1.39158804979e-11 4.39152991749e-08
1.42726979466e-11 1.60221995671e-08
1.46295153952e-11 2.47551279475e-09
1.49863328439e-11 -2.18330481472e-09
1.53431502925e-11 -2.65899205432e-09
1.56999677412e-11 -1.83647000385e-09
1.60567851899e-11 -1.01923731261e-09
1.64136026385e-11 -6.31562892262e-10
1.67704200872e-11 -8.23572130632e-10
1.71272375359e-11 -8.43844452647e-10
1.74840549845e-11 -7.87482679759e-10
1.78408724332e-11 -7.22495577254e-10
1.81976898819e-11 -6.79488212224e-10
1.85545073305e-11 -7.00499616646e-10
1.89113247792e-11 -7.53037746742e-10
1.92681422278e-11 -8.02202901329e-10
1.96249596765e-11 -7.88674434787e-10
1.99817771252e-11 -7.37198729145e-10
2.03385945738e-11 -6.68588760744e-10
2.06954120225e-11 -6.31155905317e-10
2.10522294712e-11 -6.72819990694e-10
2.14090469198e-11 -7.25768969229e-10
2.17658643685e-11 -7.67192462336e-10
2.21226818172e-11 -7.46013955472e-10
2.24794992658e-11 -6.86142892503e-10
2.28363167145e-11 -6.38760572214e-10
2.31931341632e-11 -6.2409953247e-10
2.35499516118e-11 -6.77429657508e-10
2.39067690605e-11 -7.18595002946e-10

View File

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<ContinuousStructure CoordSystem="0">
<RectilinearGrid DeltaUnit="1e-06" CoordSystem="0">
<XLines Qty="121">-116.535,-110.677745358801,-104.820490717603,-95.8093297311435,-88.8776674338671,-83.5456195128853,-79.4440441890531,-76.2889862476437,-73.8620186004057,-71.9951204102226,-70.5590448793126,-69.4543713939972,-68.6046225591391,-67.9509696092484,-67.4481596477939,-67.0613827543674,-66.7638620671163,-66.535,-66.335,-66.135,-65.835,-65.535,-65.235,-64.935,-64.735,-64.535,-64.2725,-64.035,-63.835,-63.635,-63.1725,-62.71,-61.785,-60.86,-60.3975,-59.935,-59.735,-59.535,-59.3373611111111,-59.1444444444444,-58.9491666666667,-58.7538888888889,-58.5586111111111,-58.3633333333333,-58.1680555555556,-57.9727777777778,-57.7775,-57.5822222222222,-57.3869444444444,-57.1916666666667,-56.9963888888889,-56.8011111111111,-56.6058333333333,-56.4105555555556,-56.2176388888889,-56.02,-55.82,-55.62,-55.17,-54.72,-54.52,-54.32,-53.87,-53.42,-53.22,-53.02,-52.8223611111111,-52.6294444444444,-52.4341666666667,-52.2388888888889,-52.0436111111111,-51.8483333333333,-51.6530555555556,-51.4577777777778,-51.2625,-51.0672222222222,-50.8719444444444,-50.6766666666667,-50.4813888888889,-50.2861111111111,-50.0908333333333,-49.8955555555556,-49.7026388888889,-49.505,-49.305,-49.105,-48.6425,-48.18,-47.255,-46.33,-45.8675,-45.405,-45.205,-45.005,-44.7425,-44.505,-44.305,-44.105,-43.805,-43.505,-43.205,-42.905,-42.705,-42.505,-42.2761379328837,-41.9786172456326,-41.5918403522061,-41.0890303907516,-40.4353774408608,-39.5856286060028,-38.4809551206874,-37.0448795897774,-35.1779813995943,-32.7510137523563,-29.5959558109469,-25.4943804871147,-20.1623325661329,-13.2306702688565,-4.21950928239713,1.63774535880143,7.495</XLines>
<YLines Qty="93">-88.02,-82.1627453588014,-76.3054907176029,-67.2943297311435,-60.3626674338671,-55.0306195128853,-50.9290441890531,-47.7739862476437,-45.3470186004057,-43.4801204102226,-42.0440448793126,-40.9393713939972,-40.0896225591392,-39.4359696092484,-38.9331596477939,-38.5463827543674,-38.2488620671163,-38.02,-37.82,-37.62,-37.32,-37.02,-36.72,-36.42,-36.22,-36.02,-35.7575,-35.52,-35.32,-35.12,-34.7959375,-34.471875,-33.82375,-32.5275,-31.23125,-30.583125,-30.2590625,-29.935,-29.735,-29.535,-29.3373611111111,-29.1444444444444,-28.9491666666667,-28.7538888888889,-28.5586111111111,-28.3633333333333,-28.1680555555556,-27.9727777777778,-27.7775,-27.5822222222222,-27.3869444444444,-27.1916666666667,-26.9963888888889,-26.8011111111111,-26.6058333333333,-26.4105555555556,-26.2176388888889,-26.02,-25.82,-25.62,-25.17,-24.72,-24.52,-24.32,-23.87,-23.42,-23.22,-23.02,-22.82,-22.62,-22.32,-22.02,-21.72,-21.42,-21.22,-21.02,-20.7911379328837,-20.4936172456326,-20.1068403522061,-19.6040303907516,-18.9503774408608,-18.1006286060028,-16.9959551206874,-15.5598795897774,-13.6929813995943,-11.2660137523563,-8.11095581094692,-4.00938048711473,1.32266743386713,8.25432973114354,17.2654907176029,23.1227453588014,28.98</YLines>
<ZLines Qty="111">0,8.85851353228373,17.7170270645675,28.1513836288385,38.5857401931096,49.0200967573807,59.4544533216517,69.8888098859228,80.3231664501939,90.757523014465,101.191879578736,111.626236143007,120.712489340775,127.701914877519,133.07839605963,137.2141508151,140.395500627,142.84269279,144.7251483,146.173191,147.28707,148.1439,148.803,149.31,149.7,150,150.197368421053,150.394736842105,150.592105263158,150.789473684211,150.986842105263,151.184210526316,151.381578947368,151.578947368421,151.776315789474,151.973684210526,152.171052631579,152.368421052632,152.565789473684,152.763157894737,152.960526315789,153.157894736842,153.355263157895,153.552631578947,153.75,154.27,154.79,155.75,156.265,156.5225,156.78,156.943333333333,157.106666666667,157.27,157.54,157.81,158.325,158.84,160.1803,162.5803,163.7803,164.3803,164.6803,164.9803,165.1803,165.3803,165.5803,165.7803,165.9803,166.1803,166.3803,166.5803,166.7803,166.9803,167.1803,167.3803,167.5803,167.7803,167.9803,168.3553,168.7303,169.1053,169.4803,169.613633333333,169.746966666667,169.8803,170.1803,170.5703,171.0773,171.7364,172.59323,173.707109,175.1551517,177.03760721,179.484799373,182.6661491849,186.80190394037,192.178385122481,199.167810659225,208.254063856993,218.688420421264,229.122776985535,239.557133549806,249.991490114077,260.425846678348,270.860203242619,281.29455980689,291.728916371162,302.163272935433,311.021786467716,319.8803</ZLines>
<XLines Qty="121">-116.535,-110.677745358801,-104.820490717603,-95.8093297311435,-88.8776674338671,-83.5456195128853,-79.4440441890531,-76.2889862476437,-73.8620186004057,-71.9951204102226,-70.5590448793126,-69.4543713939972,-68.6046225591391,-67.9509696092484,-67.4481596477939,-67.0613827543674,-66.7638620671163,-66.535,-66.335,-66.135,-65.835,-65.535,-65.235,-64.935,-64.735,-64.535,-64.2725,-64.035,-63.835,-63.635,-63.1725,-62.71,-61.785,-60.86,-60.3975,-59.935,-59.735,-59.535,-59.3373611111111,-59.1444444444444,-58.9491666666667,-58.7538888888889,-58.5586111111111,-58.3633333333333,-58.1680555555556,-57.9727777777778,-57.7775,-57.5822222222222,-57.3869444444444,-57.1916666666667,-56.9963888888889,-56.8011111111111,-56.6058333333333,-56.4105555555556,-56.2176388888889,-56.02,-55.82,-55.62,-55.345,-55.07,-54.52,-53.97,-53.695,-53.42,-53.22,-53.02,-52.8223611111111,-52.6294444444444,-52.4341666666667,-52.2388888888889,-52.0436111111111,-51.8483333333333,-51.6530555555556,-51.4577777777778,-51.2625,-51.0672222222222,-50.8719444444444,-50.6766666666667,-50.4813888888889,-50.2861111111111,-50.0908333333333,-49.8955555555556,-49.7026388888889,-49.505,-49.305,-49.105,-48.6425,-48.18,-47.255,-46.33,-45.8675,-45.405,-45.205,-45.005,-44.7425,-44.505,-44.305,-44.105,-43.805,-43.505,-43.205,-42.905,-42.705,-42.505,-42.2761379328837,-41.9786172456326,-41.5918403522061,-41.0890303907516,-40.4353774408608,-39.5856286060028,-38.4809551206874,-37.0448795897774,-35.1779813995943,-32.7510137523563,-29.5959558109469,-25.4943804871147,-20.1623325661329,-13.2306702688565,-4.21950928239713,1.63774535880143,7.495</XLines>
<YLines Qty="93">-88.02,-82.1627453588014,-76.3054907176029,-67.2943297311435,-60.3626674338671,-55.0306195128853,-50.9290441890531,-47.7739862476437,-45.3470186004057,-43.4801204102226,-42.0440448793126,-40.9393713939972,-40.0896225591392,-39.4359696092484,-38.9331596477939,-38.5463827543674,-38.2488620671163,-38.02,-37.82,-37.62,-37.32,-37.02,-36.72,-36.42,-36.22,-36.02,-35.7575,-35.52,-35.32,-35.12,-34.7959375,-34.471875,-33.82375,-32.5275,-31.23125,-30.583125,-30.2590625,-29.935,-29.735,-29.535,-29.3373611111111,-29.1444444444444,-28.9491666666667,-28.7538888888889,-28.5586111111111,-28.3633333333333,-28.1680555555556,-27.9727777777778,-27.7775,-27.5822222222222,-27.3869444444444,-27.1916666666667,-26.9963888888889,-26.8011111111111,-26.6058333333333,-26.4105555555556,-26.2176388888889,-26.02,-25.82,-25.62,-25.345,-25.07,-24.52,-23.97,-23.695,-23.42,-23.22,-23.02,-22.82,-22.62,-22.32,-22.02,-21.72,-21.42,-21.22,-21.02,-20.7911379328837,-20.4936172456326,-20.1068403522061,-19.6040303907516,-18.9503774408608,-18.1006286060028,-16.9959551206874,-15.5598795897774,-13.6929813995943,-11.2660137523563,-8.11095581094692,-4.00938048711473,1.32266743386713,8.25432973114354,17.2654907176029,23.1227453588014,28.98</YLines>
<ZLines Qty="64">0,9.375,18.75,28.125,37.5,46.875,56.25,65.625,75,84.375,93.75,103.125,112.5,121.875,131.25,140.625,150,153.75,155.265,156.0225,156.40125,156.78,156.943333333333,157.106666666667,157.27,157.75189375,158.2337875,159.197575,161.12515,163.052725,164.0165125,164.49840625,164.9803,165.1803,165.5053,165.8303,166.4803,167.1303,167.4553,167.7803,167.9803,168.3553,168.7303,169.4803,169.8803,171.052175,172.22405,174.5678,179.2553,188.6303,198.0053,207.3803,216.7553,226.1303,235.5053,244.8803,254.2553,263.6303,273.0053,282.3803,291.7553,301.1303,310.5053,319.8803</ZLines>
</RectilinearGrid>
<BackgroundMaterial Epsilon="1" Mue="1" Kappa="0" Sigma="0" />
<ParameterSet />
@ -112,9 +112,9 @@
<Property Epsilon="1.190000e+01,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="2.000000e+00,0.000000e+00,0.000000e+00" Sigma="0.000000e+00,0.000000e+00,0.000000e+00" Density="0.000000e+00" />
<Weight Epsilon="1.000000e+00,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="1.000000e+00,1.000000e+00,1.000000e+00" Sigma="1.000000e+00,1.000000e+00,1.000000e+00" Density="1.000000e+00" />
</Material>
<LumpedElement ID="7" Name="port_resist_1" Direction="2" Caps="1" R="5.000000e+01" C="nan" L="nan">
<FillColor R="149" G="177" B="235" a="255" />
<EdgeColor R="149" G="177" B="235" a="255" />
<LumpedElement ID="7" Name="port_resist_1" Direction="2" Caps="1" R="5.000000e+01" C="-nan(ind)" L="-nan(ind)" LEtype="0.000000e+00">
<FillColor R="204" G="83" B="191" a="255" />
<EdgeColor R="204" G="83" B="191" a="255" />
<Primitives>
<Box Priority="150">
<P1 X="-6.453500e+01" Y="-2.602000e+01" Z="1.572700e+02" />
@ -123,8 +123,8 @@
</Primitives>
</LumpedElement>
<ProbeBox ID="8" Name="port_ut_1" Number="0" Type="0" Weight="-1" NormDir="-1" StartTime="0" StopTime="0">
<FillColor R="241" G="179" B="5" a="255" />
<EdgeColor R="241" G="179" B="5" a="255" />
<FillColor R="103" G="214" B="191" a="255" />
<EdgeColor R="103" G="214" B="191" a="255" />
<Primitives>
<Box Priority="0">
<P1 X="-6.428500e+01" Y="-2.452000e+01" Z="1.572700e+02" />
@ -133,8 +133,8 @@
</Primitives>
</ProbeBox>
<ProbeBox ID="9" Name="port_it_1" Number="0" NormDir="2" Type="1" Weight="1" StartTime="0" StopTime="0">
<FillColor R="239" G="247" B="0" a="255" />
<EdgeColor R="239" G="247" B="0" a="255" />
<FillColor R="20" G="214" B="126" a="255" />
<EdgeColor R="20" G="214" B="126" a="255" />
<Primitives>
<Box Priority="0">
<P1 X="-6.453500e+01" Y="-2.602000e+01" Z="1.611252e+02" />
@ -142,9 +142,9 @@
</Box>
</Primitives>
</ProbeBox>
<LumpedElement ID="10" Name="port_resist_2" Direction="2" Caps="1" R="5.000000e+01" C="nan" L="nan">
<FillColor R="233" G="161" B="58" a="255" />
<EdgeColor R="233" G="161" B="58" a="255" />
<LumpedElement ID="10" Name="port_resist_2" Direction="2" Caps="1" R="5.000000e+01" C="-nan(ind)" L="-nan(ind)" LEtype="0.000000e+00">
<FillColor R="45" G="220" B="142" a="255" />
<EdgeColor R="45" G="220" B="142" a="255" />
<Primitives>
<Box Priority="150">
<P1 X="-4.500500e+01" Y="-2.602000e+01" Z="1.572700e+02" />
@ -153,8 +153,8 @@
</Primitives>
</LumpedElement>
<ProbeBox ID="11" Name="port_ut_2" Number="0" Type="0" Weight="-1" NormDir="-1" StartTime="0" StopTime="0">
<FillColor R="229" G="202" B="11" a="255" />
<EdgeColor R="229" G="202" B="11" a="255" />
<FillColor R="102" G="131" B="239" a="255" />
<EdgeColor R="102" G="131" B="239" a="255" />
<Primitives>
<Box Priority="0">
<P1 X="-4.475500e+01" Y="-2.452000e+01" Z="1.572700e+02" />
@ -163,8 +163,8 @@
</Primitives>
</ProbeBox>
<ProbeBox ID="12" Name="port_it_2" Number="0" NormDir="2" Type="1" Weight="1" StartTime="0" StopTime="0">
<FillColor R="203" G="208" B="72" a="255" />
<EdgeColor R="203" G="208" B="72" a="255" />
<FillColor R="87" G="73" B="97" a="255" />
<EdgeColor R="87" G="73" B="97" a="255" />
<Primitives>
<Box Priority="0">
<P1 X="-4.500500e+01" Y="-2.602000e+01" Z="1.611252e+02" />
@ -172,9 +172,9 @@
</Box>
</Primitives>
</ProbeBox>
<LumpedElement ID="13" Name="port_resist_3" Direction="2" Caps="1" R="5.000000e+01" C="nan" L="nan">
<FillColor R="71" G="100" B="189" a="255" />
<EdgeColor R="71" G="100" B="189" a="255" />
<LumpedElement ID="13" Name="port_resist_3" Direction="2" Caps="1" R="5.000000e+01" C="-nan(ind)" L="-nan(ind)" LEtype="0.000000e+00">
<FillColor R="255" G="105" B="143" a="255" />
<EdgeColor R="255" G="105" B="143" a="255" />
<Primitives>
<Box Priority="150">
<P1 X="-5.602000e+01" Y="-3.602000e+01" Z="1.572700e+02" />
@ -182,9 +182,9 @@
</Box>
</Primitives>
</LumpedElement>
<Excitation ID="14" Name="port_excite_3" Number="0" Frequency="0.000000e+00" Delay="0.000000e+00" Type="0" Excite="0.000000e+00,0.000000e+00,-1.000000e+00" PropDir="0.000000e+00,0.000000e+00,0.000000e+00">
<FillColor R="31" G="35" B="30" a="255" />
<EdgeColor R="31" G="35" B="30" a="255" />
<Excitation ID="14" Name="port_excite_3" Number="0" Enabled="1" Frequency="0.000000e+00" Delay="0.000000e+00" Type="0" Excite="0.000000e+00,0.000000e+00,-1.000000e+00" PropDir="0.000000e+00,0.000000e+00,0.000000e+00">
<FillColor R="97" G="205" B="209" a="255" />
<EdgeColor R="97" G="205" B="209" a="255" />
<Primitives>
<Box Priority="150">
<P1 X="-5.602000e+01" Y="-3.602000e+01" Z="1.572700e+02" />
@ -194,8 +194,8 @@
<Weight X="1.000000e+00" Y="1.000000e+00" Z="1.000000e+00" />
</Excitation>
<ProbeBox ID="15" Name="port_ut_3" Number="0" Type="0" Weight="-1" NormDir="-1" StartTime="0" StopTime="0">
<FillColor R="168" G="28" B="123" a="255" />
<EdgeColor R="168" G="28" B="123" a="255" />
<FillColor R="30" G="157" B="156" a="255" />
<EdgeColor R="30" G="157" B="156" a="255" />
<Primitives>
<Box Priority="0">
<P1 X="-5.452000e+01" Y="-3.577000e+01" Z="1.572700e+02" />
@ -204,8 +204,8 @@
</Primitives>
</ProbeBox>
<ProbeBox ID="16" Name="port_it_3" Number="0" NormDir="2" Type="1" Weight="1" StartTime="0" StopTime="0">
<FillColor R="100" G="197" B="20" a="255" />
<EdgeColor R="100" G="197" B="20" a="255" />
<FillColor R="22" G="114" B="114" a="255" />
<EdgeColor R="22" G="114" B="114" a="255" />
<Primitives>
<Box Priority="0">
<P1 X="-5.602000e+01" Y="-3.602000e+01" Z="1.611252e+02" />

View File

@ -0,0 +1 @@
dd9ec37ed8f0fa22222e1a3740d768a7e90248a15c22d29ac8484d21725570d3

View File

@ -3,10 +3,10 @@ import sys
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), 'modules')))
import modules.util_stackup_reader as stackup_reader
import util_gds_reader as gds_reader
import util_utilities as utilities
import util_simulation_setup as simulation_setup
import util_meshlines
import modules.util_gds_reader as gds_reader
import modules.util_utilities as utilities
import modules.util_simulation_setup as simulation_setup
import modules.util_meshlines as util_meshlines
import os
from pylab import *

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,27 @@
# Utilities for gds2openEMS
########################################################################
#
# Copyright 2025 Volker Muehlhaus and IHP PDK Authors
#
# Licensed under the GNU General Public License, Version 3.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.gnu.org/licenses/gpl-3.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
########################################################################
from . import util_stackup_reader as stackup_reader
from . import util_gds_reader as gds_reader
from . import util_utilities as utilities
from . import util_simulation_setup as simulation_setup
from . import util_meshlines as util_meshlines
__version__ = "0.1.1" # version of gds2openEMS

View File

@ -1,14 +1,115 @@
########################################################################
#
# Copyright 2025 Volker Muehlhaus and IHP PDK Authors
#
# Licensed under the GNU General Public License, Version 3.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.gnu.org/licenses/gpl-3.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
########################################################################
# Extract objects on IHP layers in GDSII file
import gdspy
import numpy as np
import os
import util_stackup_reader as stackup_reader
# check that we have gdspy version 1.6.x or later
# gdspy 1.4.2 is known for issues with our geometries
version_str = gdspy.__version__
major, minor, patch = version_str.split('.')
if int(major) == 1:
if int(minor) < 6:
print('\nWARNING: Your gdspy module version ', version_str, ' is too old, this is known to cause problems.')
print(' Please update to 1.6.13 or later!')
print(' Consider using venv if you are not allowed to modify the global Python modules of your system.')
print(' https://docs.python.org/3/library/venv.html \n')
# ============= technology specific stuff ===============
# ======================================
class layer_bounding_box:
"""
bounding box class is used to store xmin,xmax,ymin,ymax for one layer
"""
def __init__ (self, xmin, xmax, ymin, ymax):
self.xmin = xmin
self.xmax = xmax
self.ymin = ymin
self.ymax = ymax
def update (self, xmin, xmax, ymin, ymax):
self.xmin = min(xmin, self.xmin)
self.xmax = max(xmax, self.xmax)
self.ymin = min(ymin, self.ymin)
self.ymax = max(ymax, self.ymax)
class all_bounding_box_list:
"""
stores bounding box instances for multiple layers
and global bounding box across all layers
"""
def __init__ (self):
self.bounding_boxes = {}
# initialize values for bounding box calculation
self.xmin=float('inf')
self.ymin=float('inf')
self.xmax=float('-inf')
self.ymax=float('-inf')
def update (self, layer, xmin, xmax, ymin, ymax):
if self.bounding_boxes.get(layer) is not None:
self.bounding_boxes[layer].update(xmin, xmax, ymin, ymax)
else:
self.bounding_boxes[layer] = layer_bounding_box(xmin, xmax, ymin, ymax)
# also update global values
self.xmin = min(self.xmin, xmin)
self.xmax = max(self.xmax, xmax)
self.ymin = min(self.ymin, ymin)
self.ymax = max(self.ymax, ymax)
def get_layer_bounding_box (self, layer):
# return bounding box of one specific layer
# if layer not found, return global bounding box
xmin = self.xmin
xmax = self.xmax
ymin = self.ymin
ymax = self.ymax
if layer is not None:
if self.bounding_boxes.get(layer) is not None:
bbox = self.bounding_boxes[int(layer)]
xmin = bbox.xmin
xmax = bbox.xmax
ymin = bbox.ymin
ymax = bbox.ymax
return xmin, xmax, ymin, ymax
def merge (self, another_bounding_box_list):
# combine this bounding box with another bounding box from another GDSII import
# combine the dictionaries with per-layer data
self.bounding_boxes.update (another_bounding_box_list.bounding_boxes)
# combine the overall total boundary
self.xmin = min(self.xmin, another_bounding_box_list.xmin)
self.xmax = max(self.xmax, another_bounding_box_list.xmax)
self.ymin = min(self.ymin, another_bounding_box_list.ymin)
self.ymax = max(self.ymax, another_bounding_box_list.ymax)
# ============= polygons ===============
class gds_polygon:
@ -23,7 +124,8 @@ class gds_polygon:
self.layernum = layernum
self.is_port = False
self.is_via = False
self.CSXpoly = None
def add_vertex (self, x,y):
self.pts_x = np.append(self.pts_x, x)
self.pts_y = np.append(self.pts_y, y)
@ -48,13 +150,10 @@ class all_polygons_list:
def __init__ (self):
self.polygons = []
self.xmin = 0
self.xmax = 0
self.ymin = 0
self.ymax = 0
self.bounding_box = all_bounding_box_list() # manages bounding box per layer and global
def append (self, poly):
# combine points in polygon from pts_x and pts_y into pts
# before we append, combine points in polygon from pts_x and pts_y into pts
poly.process_pts()
# add polygon to list
self.polygons.append (poly)
@ -69,15 +168,19 @@ class all_polygons_list:
poly.is_port = is_port
poly.is_via = is_via
self.append(poly)
# need to update min and max here, for gds data that is done after reading file
self.xmin = min(self.xmin, x1, x2)
self.xmax = max(self.xmax, x1, x2)
self.ymin = min(self.ymin, y1, y2)
self.ymax = max(self.ymax, y1, y2)
self.bounding_box.update (layernum, min(x1,x2), max(x1,x2),min(y1,y2),max(y1,y2))
def add_polygon (self, xy, layernum, is_port=False, is_via=False):
# append polygon array to list, this can also be done later, after reading GDSII file
# polygon data structure must be [[x1,y1],[x2,y2],...[xn,yn]]
xmin=float('inf')
ymin=float('inf')
xmax=float('-inf')
ymax=float('-inf')
poly = gds_polygon(layernum)
numpts = len(xy)
for pt in range(0, numpts):
@ -86,23 +189,52 @@ class all_polygons_list:
y = pt[1]
poly.add_vertex(x,y)
# need to update min and max here, for gds data that is done after reading file
self.xmin = min(self.xmin, x)
self.xmax = max(self.xmax, x)
self.ymin = min(self.ymin, y)
self.ymax = max(self.ymax, y)
xmin = min(xmin, x)
xmax = max(xmax, x)
ymin = min(ymin, y)
ymax = max(ymax, y)
# need to update min and max here, for gds data that is done after reading file
self.bounding_box.update (layernum, xmin, xmax, ymin, ymax)
self.append(poly)
def set_bounding_box (self, xmin,xmax,ymin,ymax):
self.xmin = xmin
self.xmax = xmax
self.ymin = ymin
self.ymax = ymax
# global bounding box, over all evaluated layers
self.bounding_box.xmin = xmin
self.bounding_box.xmax = xmax
self.bounding_box.ymin = ymin
self.bounding_box.ymax = ymax
def get_layer_bounding_box (self, layer):
# return bounding box for specific layer, returns global if layer not found
return self.bounding_box.get_layer_bounding_box (layer)
def get_bounding_box (self):
return self.xmin, self.xmax, self.ymin, self.ymax
# return global bounding box
return self.bounding_box.xmin, self.bounding_box.xmax, self.bounding_box.ymin, self.bounding_box.ymax
def get_xmin (self):
# return global bounding box
return self.bounding_box.xmin
def get_xmax (self):
# return global bounding box
return self.bounding_box.xmax
def get_ymin (self):
# return global bounding box
return self.bounding_box.ymin
def get_ymax (self):
# return global bounding box
return self.bounding_box.ymax
def merge (self, another_polygons_list):
# merge with another polygon list from another GDSII import
for polygon in another_polygons_list.polygons:
self.polygons.append(polygon)
# also merge boundary information
self.bounding_box.merge(another_polygons_list.bounding_box)
# ---------------------- via merging option --------------------
@ -124,9 +256,10 @@ def merge_via_array (polygons, maxspacing):
return mergedpolygonset.polygons
# ----------- read GDSII file, return openEMS polygon list object -----------
def read_gds(filename, layerlist, purposelist, metals_list, preprocess=False, merge_polygon_size=0 ):
def read_gds(filename, layerlist, purposelist, metals_list, preprocess=False, merge_polygon_size=0, mirror=False, offset_x=0, offset_y=0, gds_boundary_layers=[], layernumber_offset=0, cellname=""):
"""
Read GDSII file and return polygon list object
@ -199,56 +332,76 @@ def read_gds(filename, layerlist, purposelist, metals_list, preprocess=False, me
# end preprocessing
# evaluate only first top level cell
toplevel_cell_list = input_library.top_level()
cell = toplevel_cell_list[0]
# try to get cell named cellname, otherwise top level cell
cell = input_library.cells.get(cellname, toplevel_cell_list[0])
all_polygons = all_polygons_list()
# initialize values for bounding box calculation
xmin=float('inf')
ymin=float('inf')
xmax=float('-inf')
ymax=float('-inf')
# iterate over IHP technology layers
for layer_to_extract in layerlist:
# flatten hierarchy below this cell
cell.flatten(single_layer=None, single_datatype=None, single_texttype=None)
# optional mirror and translation of entire cell
for poly in cell.polygons:
if mirror:
# optional mirror
poly = poly.mirror(p1=[0,0],p2=[0,1])
if (offset_x != 0) or (offset_y != 0):
# optional translation after mirror
poly = poly.translate(offset_x, offset_y)
# iterate over XML technology metal layers and (optional) dielectric layer boundary spec
extended_layer_list = layerlist
extended_layer_list.extend(gds_boundary_layers)
for layer_to_extract in extended_layer_list:
# print ("Evaluating layer ", str(layer_to_extract))
# flatten hierarchy below this cell
cell.flatten(single_layer=None, single_datatype=None, single_texttype=None)
# get layers used in cell
used_layers = cell.get_layers()
# Note on layer numbers:
# Used layer is the layer base number, layer_to_extract has the layer number offset from XML
# For this file, the layernumber_offset applies ALWAYS
# check if layer-to-extract is used in cell
if (layer_to_extract in used_layers):
layer_to_extract_gds = layer_to_extract - layernumber_offset
if (layer_to_extract_gds in used_layers): # use base layer number here to match GDSII
# iterate over layer-purpose pairs (by_spec=true)
# do not descend into cell references (depth=0)
LPPpolylist = cell.get_polygons(by_spec=True, depth=0)
for LPP in LPPpolylist:
layer = LPP[0]
layer = LPP[0]
purpose = LPP[1]
# now get polygons for this one layer-purpose-pair
if (layer==layer_to_extract) and (purpose in purposelist):
if (layer==layer_to_extract_gds) and (purpose in purposelist):
layerpolygons = LPPpolylist[(layer, purpose)]
# optional via array merging, only for via layers
metal = metals_list.getbylayernumber(layer_to_extract)
metal = metals_list.getbylayernumber(layer_to_extract) # this is the layer number with offset, to match XML stackup
if metal != None:
if (merge_polygon_size>0) and metal.is_via:
layerpolygons = merge_via_array (layerpolygons, merge_polygon_size)
# bounding box for this layer
xmin=float('inf')
ymin=float('inf')
xmax=float('-inf')
ymax=float('-inf')
# iterate over layer polygons
for polypoints in layerpolygons:
numvertices = int(polypoints.size/polypoints.ndim)
# new polygon, store layer number information
new_poly = gds_polygon(layer)
new_poly = gds_polygon(layer + layernumber_offset)
# get vertices
for vertex in range(numvertices):
@ -258,18 +411,70 @@ def read_gds(filename, layerlist, purposelist, metals_list, preprocess=False, me
new_poly.add_vertex(x,y)
# update bounding box information
if x<xmin: xmin=x
if x>xmax: xmax=x
if y<ymin: ymin=y
if y>ymax: ymax=y
xmin = min(x,xmin)
xmax = max(x,xmax)
ymin = min(y,ymin)
ymax = max(y,ymax)
# polygon is complete, process and add to list
all_polygons.append(new_poly)
all_polygons.set_bounding_box (xmin,xmax,ymin,ymax)
# done with this layer, store bounding box for this layer
all_polygons.bounding_box.update(layer + layernumber_offset, xmin, xmax, ymin, ymax)
'''
# Re-evaluate bounding box if we have a bounding box specified in GDS file and evaluation is requested
if gds_boundary is not None:
spec = gds_boundary.split(":")
boundary_layer = int(spec[0])
if len(spec)>1:
# user has specified purpose explicitely
boundary_purpose_list = [int(spec[1])]
else:
# use global purpose list
boundary_purpose_list = purposelist
# get layers used in cell
used_layers = cell.get_layers()
# check if layer-to-extract is used in cell
if (boundary_layer in used_layers):
# reset previous bounding box and start all over again
xmin=float('inf')
ymin=float('inf')
xmax=float('-inf')
ymax=float('-inf')
# iterate over layer-purpose pairs (by_spec=true)
# do not descend into cell references (depth=0)
LPPpolylist = cell.get_polygons(by_spec=True, depth=0)
for LPP in LPPpolylist:
layer = LPP[0]
purpose = LPP[1]
# now get polygons for this one layer-purpose-pair
if (layer==boundary_layer) and (purpose in boundary_purpose_list):
layerpolygons = LPPpolylist[(layer, purpose)]
# iterate over layer polygons
for polypoints in layerpolygons:
numvertices = int(polypoints.size/polypoints.ndim)
# get vertices
for vertex in range(numvertices):
x = polypoints[vertex,0]
y = polypoints[vertex,1]
# update bounding box information
if x<xmin: xmin=x
if x>xmax: xmax=x
if y<ymin: ymin=y
if y>ymax: ymax=y
'''
# all_polygons.set_bounding_box (xmin,xmax,ymin,ymax)
# done!
return all_polygons
@ -279,16 +484,5 @@ def read_gds(filename, layerlist, purposelist, metals_list, preprocess=False, me
# =======================================================================================
# Test code when running as standalone script
# =======================================================================================
if __name__ == "__main__":
filename = "L_2n0_simplified.gds"
allpolygons = read_gds(filename,[134, 133, 126, 8],[0], None) # read layers 134,133,126, 8 with purpose 0
for poly in allpolygons.polygons:
print(poly)
print("Bounding box: " + str(allpolygons.xmin) + " " + str(allpolygons.xmax) + " " + str(allpolygons.ymin) + " " + str(allpolygons.ymax))

View File

@ -1,40 +1,126 @@
# -*- coding: utf-8 -*-
########################################################################
#
# Copyright 2025 Volker Muehlhaus and IHP PDK Authors
#
# Licensed under the GNU General Public License, Version 3.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.gnu.org/licenses/gpl-3.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
########################################################################
# create mesh lines for metals and dielectrics
import math
from util_stackup_reader import *
from util_gds_reader import *
import numpy as np
def create_z_mesh(mesh, dielectrics_list, metals_list, target_cellsize, max_cellsize, antenna_margin, exclude_list):
class mesh_stackup_layer:
# dielectric layer for meshing control
def __init__ (self, dielectric):
self.dielectric = dielectric
self.metal_inside = False
self.meshsize_top = 0
self.meshsize_bottom = 0
self.mesh_done = False
class mesh_stackup_layers:
# all dielectric layer for meshing control
def __init__ (self):
self.stackup_layers = []
# first, add all stackup, which also tags layers with metal mesh inside
for dielectric in dielectrics_list.dielectrics:
self.stackup_layers.append(mesh_stackup_layer(dielectric))
# next, set the neighbours of metal layers to the target meshsize as starting value
for i, stackup_layer in enumerate(self.stackup_layers):
if stackup_layer.metal_inside:
if not stackup_layer.dielectric.is_top:
above = self.stackup_layers[i+1]
above.meshsize_bottom = target_cellsize
elif not stackup_layer.dielectric.is_bottom:
below = self.stackup_layers[i-1]
below.meshsize_bottom = target_cellsize
def append (self, stackup_layer):
self.stackup_layers.append (stackup_layer)
# check for metal inside
for metal in metals_list.metals:
# metals from the exclude list are not meshed like other metals, so skip them here
if metal.name not in exclude_list:
# only metal layers with polygons or vias are meshed
if metal.is_used or metal.is_via:
# if this is inside our dielectric, mark as metal_inside
# Note: this only detects metals fully encloded by the dielectric
if (metal.zmin > stackup_layer.dielectric.zmin) and (metal.zmax < stackup_layer.dielectric.zmax):
stackup_layer.metal_inside = True
stackup_layer.meshsize_top = target_cellsize
stackup_layer.meshsize_bottom = target_cellsize
for metal in metals_list.metals:
if metal.name not in exclude_list:
# print('Checking metal layer ', metal.name, ' used:', str(metal.is_used), ' via:', str(metal.is_via))
if metal.is_used:
add_equal_meshlines(mesh, 'z', metal.zmin, metal.zmax, target_cellsize)
else:
# don't mesh unused layers, but place at least one mesh line for each unused via
if metal.is_via:
if not metal.is_via:
metal_thickness = metal.zmax-metal.zmin
if metal_thickness > 3*target_cellsize:
# for thick metals, we just place mesh lines at top and bottom, and let smoothing do the filling
mesh.AddLine('z', metal.zmin)
mesh.AddLine('z', metal.zmin + target_cellsize)
mesh.AddLine('z', metal.zmax)
mesh.AddLine('z', metal.zmax - target_cellsize)
else:
target_cellsize_z = min(target_cellsize, metal_thickness)
add_equal_meshlines(mesh, 'z', metal.zmin, metal.zmax, target_cellsize_z)
else:
# via
mesh.AddLine('z', metal.zmin)
mesh.AddLine('z', metal.zmax)
for dielectric in dielectrics_list.dielectrics:
if dielectric.name not in exclude_list:
# mesh dielectric layers
if dielectric.is_top:
# Air: fill UPWARDS with increasing mesh size
# if we have an antenna, we can start counting the antenna_margin at the bottom of the air layer
stackup_layers = mesh_stackup_layers()
# note:
# metal layers are already when creating mesh_stackup_layers()
# and for adjacent dielectrics, mesh size is set boundary
for i, stackup_layer in enumerate(stackup_layers.stackup_layers):
zmax = stackup_layer.dielectric.zmax
zmin = stackup_layer.dielectric.zmin
target_cellsize_z = min(target_cellsize, zmax-zmin)
if not stackup_layer.metal_inside:
# check if we have extra margins for antenna simulation, then we push out the top and bottom boundary
if stackup_layer.dielectric.is_top:
# zmax = max(stackup_layer.dielectric.zmax, stackup_layer.dielectric.zmin + antenna_margin)
zmax = zmax + antenna_margin
elif stackup_layer.dielectric.is_bottom:
zmin = zmin - antenna_margin
# place mesh line at interface
mesh.AddLine('z', zmin)
mesh.AddLine('z', zmax)
if stackup_layer.meshsize_bottom > 0:
mesh.AddLine('z', zmin+stackup_layer.meshsize_bottom)
if stackup_layer.meshsize_top > 0:
mesh.AddLine('z', zmin+stackup_layer.meshsize_top)
add_graded_meshlines (mesh, 'z', dielectric.zmin, max(dielectric.zmax, dielectric.zmin + antenna_margin), 1.5*target_cellsize, 1.3, max_cellsize)
elif dielectric.is_bottom:
# Sub: fill DOWNWARDS with increasing mesh size
lastcell = add_graded_meshlines (mesh, 'z', dielectric.zmax, dielectric.zmin, -1.5*target_cellsize, 1.3, -max_cellsize)
if antenna_margin > 0:
add_graded_meshlines (mesh, 'z', dielectric.zmin, dielectric.zmin-antenna_margin, lastcell, 1.3, -max_cellsize)
else:
add_equal_meshlines (mesh, 'z', dielectric.zmin, dielectric.zmax, target_cellsize)
# check for possible gaps
def add_missing_lines (direction):
@ -64,11 +150,11 @@ def create_z_mesh(mesh, dielectrics_list, metals_list, target_cellsize, max_cell
check_z = True
while check_z:
check_z = add_missing_lines('z')
# add mesh line at bottom of stackup at z=0
mesh.AddLine('z', 0.0)
# mesh.SmoothMeshLines('z', max_cellsize, 1.3)
mesh.SmoothMeshLines('z', max_cellsize, 1.3)
return mesh
@ -78,20 +164,19 @@ def create_standard_xy_mesh(mesh, allpolygons, margin, antenna_margin, target_ce
oversize = margin + antenna_margin
# geometry region
add_equal_meshlines(mesh, 'x', allpolygons.xmin, allpolygons.xmax, target_cellsize)
add_equal_meshlines(mesh, 'y', allpolygons.ymin, allpolygons.ymax, target_cellsize)
add_equal_meshlines(mesh, 'x', allpolygons.get_xmin(), allpolygons.get_xmax(), target_cellsize)
add_equal_meshlines(mesh, 'y', allpolygons.get_ymin(), allpolygons.get_ymax(), target_cellsize)
# margins
add_graded_meshlines (mesh, 'x', allpolygons.xmin, allpolygons.xmin - oversize, -1.5*target_cellsize, 1.3, -max_cellsize)
add_graded_meshlines (mesh, 'x', allpolygons.xmax, allpolygons.xmax + oversize, 1.5*target_cellsize, 1.3, max_cellsize)
add_graded_meshlines (mesh, 'x', allpolygons.get_xmin(), allpolygons.get_xmin() - oversize, -1.5*target_cellsize, 1.3, -max_cellsize)
add_graded_meshlines (mesh, 'x', allpolygons.get_xmax(), allpolygons.get_xmax() + oversize, 1.5*target_cellsize, 1.3, max_cellsize)
add_graded_meshlines (mesh, 'y', allpolygons.ymin, allpolygons.ymin - oversize, -1.5*target_cellsize, 1.3, -max_cellsize)
add_graded_meshlines (mesh, 'y', allpolygons.ymax, allpolygons.ymax + oversize, 1.5*target_cellsize, 1.3, max_cellsize)
add_graded_meshlines (mesh, 'y', allpolygons.get_ymin(), allpolygons.get_ymin() - oversize, -1.5*target_cellsize, 1.3, -max_cellsize)
add_graded_meshlines (mesh, 'y', allpolygons.get_ymax(), allpolygons.get_ymax() + oversize, 1.5*target_cellsize, 1.3, max_cellsize)
return mesh
def create_xy_mesh_from_polygons (mesh, allpolygons, margin, antenna_margin, target_cellsize, max_cellsize):
class weighted_meshline:
@ -160,17 +245,17 @@ def create_xy_mesh_from_polygons (mesh, allpolygons, margin, antenna_margin, tar
# outer simulation boundary
oversize = margin
weighted_meshlines_x.addPolyEdge(allpolygons.xmin - oversize)
weighted_meshlines_x.addPolyEdge(allpolygons.xmax + oversize)
weighted_meshlines_y.addPolyEdge(allpolygons.ymin - oversize)
weighted_meshlines_y.addPolyEdge(allpolygons.ymax + oversize)
weighted_meshlines_x.addPolyEdge(allpolygons.get_xmin() - oversize)
weighted_meshlines_x.addPolyEdge(allpolygons.get_xmax() + oversize)
weighted_meshlines_y.addPolyEdge(allpolygons.get_ymin() - oversize)
weighted_meshlines_y.addPolyEdge(allpolygons.get_ymax() + oversize)
if antenna_margin>0:
oversize = margin + antenna_margin
weighted_meshlines_x.addPolyEdge(allpolygons.xmin - oversize)
weighted_meshlines_x.addPolyEdge(allpolygons.xmax + oversize)
weighted_meshlines_y.addPolyEdge(allpolygons.ymin - oversize)
weighted_meshlines_y.addPolyEdge(allpolygons.ymax + oversize)
weighted_meshlines_x.addPolyEdge(allpolygons.get_xmin() - oversize)
weighted_meshlines_x.addPolyEdge(allpolygons.get_xmax() + oversize)
weighted_meshlines_y.addPolyEdge(allpolygons.get_ymin() - oversize)
weighted_meshlines_y.addPolyEdge(allpolygons.get_ymax() + oversize)
# step 1: create lines at all polygon edges
@ -187,25 +272,30 @@ def create_xy_mesh_from_polygons (mesh, allpolygons, margin, antenna_margin, tar
else: # regular polygon
weighted_meshlines_x.addPolyEdge(point)
# add small cell left and right
if point > allpolygons.xmin:
if point > allpolygons.get_xmin():
weighted_meshlines_x.addFill(point-target_cellsize)
if point < allpolygons.xmax:
if point < allpolygons.get_xmax():
weighted_meshlines_x.addFill(point+target_cellsize)
for point in poly.pts_y:
if poly.is_port: # highest priority in meshing
weighted_meshlines_y.addPortEdge(point)
else: # regular polygon
weighted_meshlines_y.addPolyEdge(point)
if point > allpolygons.ymin:
if point > allpolygons.get_ymin():
weighted_meshlines_y.addFill(point-target_cellsize)
if point < allpolygons.ymax:
if point < allpolygons.get_ymax():
weighted_meshlines_y.addFill(point+target_cellsize)
# special case port, the polygon is then a rectangle and we want to insert one extra mesh line in the middle
if poly.is_port:
weighted_meshlines_x.addFill((min(poly.pts_x)+max(poly.pts_x))/2)
weighted_meshlines_y.addFill((min(poly.pts_y)+max(poly.pts_y))/2)
# get orientation, place extra mesh line along the short axis
size_x = poly.xmax - poly.xmin
size_y = poly.ymax - poly.ymin
if size_x > size_y:
weighted_meshlines_y.addFill((min(poly.pts_y)+max(poly.pts_y))/2)
else:
weighted_meshlines_x.addFill((min(poly.pts_x)+max(poly.pts_x))/2)
@ -317,8 +407,8 @@ def create_xy_mesh_from_polygons (mesh, allpolygons, margin, antenna_margin, tar
mesh.AddLine(direction, point)
add_extra_lines('x', allpolygons.xmin, allpolygons.xmax)
add_extra_lines('y', allpolygons.ymin, allpolygons.ymax)
add_extra_lines('x', allpolygons.get_xmin(), allpolygons.get_xmax())
add_extra_lines('y', allpolygons.get_ymin(), allpolygons.get_ymax())
mesh.SmoothMeshLines('x', max_cellsize, 1.3)
mesh.SmoothMeshLines('y', max_cellsize, 1.3)
@ -367,11 +457,15 @@ def add_equal_meshlines(mesh, axis, start, stop, target_cellsize):
"""
Adds a number of equally spaced meshlines
"""
# calculate required number of mesh cells
n = int(abs((math.ceil((stop-start)/target_cellsize)+1)))
points = np.linspace(start, stop, n)
for point in points:
mesh.AddLine(axis, point)
if stop-start > 1.5 * target_cellsize:
# calculate required number of mesh cells
n = int(abs((math.ceil((stop-start)/target_cellsize)+1)))
points = np.linspace(start, stop, n)
for point in points:
mesh.AddLine(axis, point)
else:
mesh.AddLine(axis, start)
mesh.AddLine(axis, stop)

View File

@ -1,18 +1,34 @@
# -*- coding: utf-8 -*-
########################################################################
#
# Copyright 2025 Volker Muehlhaus and IHP PDK Authors
#
# Licensed under the GNU General Public License, Version 3.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.gnu.org/licenses/gpl-3.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
########################################################################
import os
import util_stackup_reader as stackup_reader
import util_gds_reader as gds_reader
import util_utilities as utilities
import util_meshlines
from . import util_utilities as utilities
from . import util_meshlines
from pylab import *
from CSXCAD import ContinuousStructure
from CSXCAD import AppCSXCAD_BIN
from openEMS import openEMS
from openEMS.physical_constants import *
import numpy as np
class simulation_port:
"""
@ -69,6 +85,152 @@ class all_simulation_ports:
def get_port_by_number (self, portnum):
return self.ports[portnum-1]
def apply_layernumber_offset (self, offset):
newportlayers = []
for port in self.ports:
port.source_layernum = port.source_layernum + offset
newportlayers.append(port.source_layernum)
self.portlayers = newportlayers
def all_active_excitations (self):
"""Get all active port excitations, i.e. ports with voltage other than zero
Returns:
list of simulation_port: active port instances
"""
numbers = []
for port in self.ports:
if abs(port.voltage) > 1E-6:
# skip zero voltage ports for excitation
# append as list, we need that for create_palace() function
numbers.append([port.portnumber])
return numbers
'''
openEMS dump types:
* 0 : for E-field time-domain dump (default)
* 1 : for H-field time-domain dump
* 2 : for electric current time-domain dump
* 3 : for total current density (rot(H)) time-domain dump
* 10 : for E-field frequency-domain dump
* 11 : for H-field frequency-domain dump
* 12 : for electric current frequency-domain dump
* 13 : for total current density (rot(H)) frequency-domain dump
* 20 : local SAR frequency-domain dump
* 21 : 1g averaging SAR frequency-domain dump
* 22 : 10g averaging SAR frequency-domain dump
* 29 : raw data needed for SAR calculations (electric field FD, cell volume, conductivity and density)
openEMS dump modes:
* 0 : no-interpolation
* 1 : node-interpolation (default, see warning below)
* 2 : cell-interpolation (see warning below)
openEMS file types:
* 0 : vtk-file (default)
* 1 : hdf5-file (easier to read by python, using h5py)
'''
class dump():
def __init__ (self, name, file_type, dump_type, source_layernum, from_layername, to_layername, offset_top, offset_bottom, sub_sampling):
self.name = name
# allow string names for filetype also
if file_type == 'vtk':
file_type=0
elif file_type == 'hdf5':
file_type=1
if file_type not in [0,1]:
print('Invalid dump filetype specified for ', name)
exit(1)
self.file_type = file_type
self.source_layernum = source_layernum
self.from_layername=from_layername
self.to_layername=to_layername
self.offset_top = offset_top
self.offset_bottom = offset_bottom
self.subsampling = sub_sampling
class time_dump(dump):
def __init__ (self, name, file_type, dump_type, source_layernum, from_layername, to_layername, offset_top, offset_bottom, sub_sampling):
super().__init__(name, file_type, dump_type, source_layernum, from_layername, to_layername, offset_top, offset_bottom, sub_sampling)
# allow string names for dumptype also
if dump_type == 'E' or dump_type == 'Et':
dump_type=0
elif dump_type == 'H' or dump_type == 'Ht':
dump_type=1
elif dump_type == 'J' or dump_type == 'Jt':
dump_type=2
elif dump_type == 'rotH' or dump_type == 'rotHt':
dump_type=3
self.dump_type = dump_type
if dump_type not in [0,1,2,3]:
print('Invalid dumptype specified for time domain dump ', name)
exit(1)
class frequency_dump(dump):
def __init__ (self, name, frequency, file_type, dump_type, source_layernum, from_layername='', to_layername='', offset_top=0, offset_bottom=0, sub_sampling=[1,1,1]):
super().__init__(name, file_type, dump_type, source_layernum, from_layername, to_layername, offset_top, offset_bottom, sub_sampling)
self.frequency = frequency
# allow string names for dumptype also
if dump_type == 'E' or dump_type == 'Ef':
dump_type=10
elif dump_type == 'H' or dump_type == 'Hf':
dump_type=11
elif dump_type == 'J' or dump_type == 'Jf':
dump_type=12
elif dump_type == 'rotH' or dump_type == 'rotHf':
dump_type=13
self.dump_type = dump_type
if dump_type not in [10,11,12,13]:
print('Invalid dumptype specified for frequency domain dump ', name)
exit(1)
class all_field_dumps():
def __init__ (self):
self.field_dumps = []
self.dumplayers = []
self.count = 0
def add_dump (self, dump):
self.field_dumps.append(dump)
self.count = len(self.field_dumps)
self.dumplayers.append(dump.source_layernum)
def add_frequency_dump (self, name, frequency, file_type, dump_type, source_layernum, from_layername='', to_layername='', offset_top=0, offset_bottom=0, sub_sampling=[1,1,1]):
self.field_dumps.append(frequency_dump(name=name, frequency=frequency, file_type=file_type, dump_type=dump_type, source_layernum=source_layernum, from_layername=from_layername, to_layername=to_layername, offset_top=offset_top, offset_bottom=offset_bottom, sub_sampling=sub_sampling))
self.count = len(self.field_dumps)
self.dumplayers.append(source_layernum)
def add_time_dump (self, name, file_type, dump_type, source_layernum, from_layername='', to_layername='', offset_top=0, offset_bottom=0, sub_sampling=[1,1,1]):
self.field_dumps.append(time_dump(name=name, file_type=file_type, dump_type=dump_type, source_layernum=source_layernum, from_layername=from_layername, to_layername=to_layername, offset_top=offset_top, offset_bottom=offset_bottom, sub_sampling=sub_sampling))
self.count = len(self.field_dumps)
self.dumplayers.append(source_layernum)
def addGeometry_to_CSX (CSX, excite_portnumbers,simulation_ports,FDTD, materials_list, dielectrics_list, metals_list, allpolygons):
@ -87,22 +249,58 @@ def addGeometry_to_CSX (CSX, excite_portnumbers,simulation_ports,FDTD, materials
if all_assigned != None:
for metal in all_assigned:
materialname = metal.material
# check for openEMS CSX material object that belongs to this material name
if materialname in CSX_materials_list.keys():
# already in list, was used before
CSX_material = CSX_materials_list[materialname]
# check for stackup defintions that are not compatible with this workflow
if not metal.is_sheet:
# check for openEMS CSX material object that belongs to this material name
if materialname in CSX_materials_list.keys():
# already in list, was used before
CSX_material = CSX_materials_list[materialname]
else:
# create CSX material, was not used before
material = materials_list.get_by_name(materialname)
CSX_material = CSX.AddMaterial(material.name, kappa=material.sigma, epsilon=material.eps)
CSX_materials_list.update({material.name: CSX_material})
# set color for IHP layers, if available, so that we see that color in AppCSXCAD 3D view
if material.color != "":
CSX_material.SetColor('#' + material.color, 255) # transparency value 255 = solid
# add Polygon to CSX
# remember value for MA meshing algorithm, which works on CSX polygons rather than our GDS polygons
p = CSX_material.AddLinPoly(priority=200, points=poly.pts, norm_dir ='z', elevation=metal.zmin, length=metal.thickness)
poly.CSXpoly = p
else:
# create CSX material, was not used before
print('Sheet material assigned to layer', metal.name)
# create a unique material defintion for this layer
# get thickness of layer definition
thickness = metal.zmax - metal.zmin # should always be zero for sheet
# get material type
material = materials_list.get_by_name(materialname)
CSX_material = CSX.AddMaterial(material.name, kappa=material.sigma, epsilon=material.eps)
CSX_materials_list.update({material.name: CSX_material})
# set color for IHP layers, if available, so that we see that color in AppCSXCAD 3D view
if material.color != "":
CSX_material.SetColor('#' + material.color, 255) # transparency value 255 = solid
# add Polygon to CSX
CSX_material.AddLinPoly(priority=200, points=poly.pts, norm_dir ='z', elevation=metal.zmin, length=metal.thickness)
if material.type == 'RESISTOR' and material.Rs>0 :
# define conducting sheet with sigma calculated from material Rs value and thickness from layer
if thickness==0:
# thickness not specified in stackup
thickness=1e-6 # assume 1 micron for loss calculation, we then calculate Sigma to obtain desired Rs
sigma = 1/(thickness*material.Rs)
CSX_material = CSX.AddConductingSheet(metal.name + '_' + material.name, conductivity=sigma, thickness=thickness)
CSX_materials_list.update({material.name: CSX_material})
else:
print('WARNING: Invalid material assigned to layer ', metal.name)
print(str(material))
print('=====> MATERIAL IS REPLACED BY PEC (PERFECT CONDUCTOR) <=====')
CSX_material = CSX.AddMaterial('PEC_' + material.name)
CSX_materials_list.update({material.name: CSX_material})
# add Polygon to CSX but no thickness
# remember value for MA meshing algorithm, which works on CSX polygons rather than our GDS polygons
p = CSX_material.AddLinPoly(priority=200, points=poly.pts, norm_dir ='z', elevation=metal.zmin, length=0)
poly.CSXpoly = p
return CSX, CSX_materials_list
@ -111,29 +309,33 @@ def addDielectrics_to_CSX (CSX, CSX_materials_list, materials_list, dielectrics
for dielectric in dielectrics_list.dielectrics:
# get CSX material object for this dielectric layers material name
materialname = dielectric.material
material = materials_list.get_by_name(materialname)
materialname = dielectric.name
material = materials_list.get_by_name(dielectric.material)
if material is None:
print('ERROR: Material ', materialname, 'for dielectric layer ', dielectric.name, ' is not defined in stackup file. ')
exit(1)
if materialname in CSX_materials_list.keys():
# already defined in CSX materials, was used before
CSX_material = CSX_materials_list[materialname]
else:
# create CSX material, was not used before
CSX_material = CSX.AddMaterial(material.name, kappa=material.sigma, epsilon=material.eps)
CSX_materials_list.update({material.name: CSX_material})
# set color for IHP layers, if available
if material.color != "":
CSX_material.SetColor('#' + material.color, 20) # transparency value 20, very transparent
# create new material per layer, so that we can enable/disable them in appCSXCAD when used more than once
materialname = materialname + '_1'
# create CSX material
CSX_material = CSX.AddMaterial(materialname, kappa=material.sigma, epsilon=material.eps)
CSX_materials_list.update({materialname: CSX_material})
# set color for IHP layers, if available
if material.color != "":
CSX_material.SetColor('#' + material.color, 20) # transparency value 20, very transparent
# now that we have a CSX material, add the dielectric body (substrate, oxide etc)
CSX_material.AddBox(priority=10, start=[allpolygons.xmin - margin, allpolygons.ymin - margin, dielectric.zmin], stop=[allpolygons.xmax + margin, allpolygons.ymax + margin, dielectric.zmax])
bbox_xmin, bbox_xmax, bbox_ymin, bbox_ymax = allpolygons.bounding_box.get_layer_bounding_box(dielectric.gdsboundary)
CSX_material.AddBox(priority=10, start=[bbox_xmin - margin, bbox_ymin - margin, dielectric.zmin], stop=[bbox_xmax + margin, bbox_ymax + margin, dielectric.zmax])
# Optional: add a layer of PEC with zero thickness below stackup
# This is useful if we have air layer around for absorbing boundaries (antenna simulation)
if addPEC:
PEC = CSX.AddMetal( 'PEC_bottom' )
PEC.SetColor('#ffffff', 50)
PEC.AddBox(priority=255, start=[allpolygons.xmin - margin, allpolygons.ymin - margin, 0], stop=[allpolygons.xmax + margin, allpolygons.ymax + margin, 0])
PEC.SetColor("#ffffff", 50)
PEC.AddBox(priority=255, start=[bbox_xmin - margin, bbox_ymin - margin, 0], stop=[bbox_xmax + margin, bbox_ymax + margin, 0])
return CSX, CSX_materials_list
@ -151,74 +353,74 @@ def addPorts_to_CSX (CSX, excite_portnumbers,simulation_ports,FDTD, materials_li
metal = metals_list.getbylayernumber (poly.layernum)
if metal == None: # this layer does not exist in XML stackup
# found a layer that is not defined in stackup from XML, check if used for ports
if poly.layernum in simulation_ports.portlayers:
# find port definition for this GDSII source layer number
port = simulation_ports.get_port_by_layernumber(poly.layernum)
if port is not None:
# mark polygon for special handling in meshing
poly.is_port = True
# find port definition for this GDSII source layer number
port = simulation_ports.get_port_by_layernumber(poly.layernum)
if port != None:
portnum = port.portnumber
port_direction = port.direction
port_Z0 = port.port_Z0
if portnum in excite_portnumbers: # list of excited ports, this can be more than one port number for GSG with composite ports
voltage = port.voltage # only apply source voltage to ports that are excited in this simulation run
portnum = port.portnumber
port_direction = port.direction
port_Z0 = port.port_Z0
if portnum in excite_portnumbers: # list of excited ports, this can be more than one port number for GSG with composite ports
voltage = port.voltage # only apply source voltage to ports that are excited in this simulation run
else:
voltage = 0 # passive port in this simulation run
if port.reversed_direction: # port direction changes polarity
xmin = poly.xmax
xmax = poly.xmin
ymin = poly.ymax
ymax = poly.ymin
else:
xmin = poly.xmin
xmax = poly.xmax
ymin = poly.ymin
ymax = poly.ymax
# port z coordinates are different between in-plane ports and via ports
if port.target_layername != None:
# in-plane port
port_metal = metals_list.getbylayername(port.target_layername)
zmin = port_metal.zmin
zmax = port_metal.zmax
else:
# via port
if port.from_layername == 'GND': # special case bottom of simulation box
zmin_from = 0
zmax_from = 0
else:
voltage = 0 # passive port in this simulation run
if port.reversed_direction: # port direction changes polarity
xmin = poly.xmax
xmax = poly.xmin
ymin = poly.ymax
ymax = poly.ymin
else:
xmin = poly.xmin
xmax = poly.xmax
ymin = poly.ymin
ymax = poly.ymax
# port z coordinates are different between in-plane ports and via ports
if port.target_layername != None:
# in-plane port
port_metal = metals_list.getbylayername(port.target_layername)
zmin = port_metal.zmin
zmax = port_metal.zmax
else:
# via port
if port.from_layername == 'GND': # special case bottom of simulation box
zmin_from = 0
zmax_from = 0
else:
from_metal = metals_list.getbylayername(port.from_layername)
if from_metal==None:
from_metal = metals_list.getbylayername(port.from_layername)
if from_metal==None:
print('[ERROR] Invalid layer ' , port.from_layername, ' in port definition, not found in XML stackup file!')
sys.exit(1)
zmin_from = from_metal.zmin
zmax_from = from_metal.zmax
if port.to_layername == 'GND': # special case bottom of simulation box
zmin_to = 0
zmax_to = 0
else:
to_metal = metals_list.getbylayername(port.to_layername)
if to_metal==None:
zmin_from = from_metal.zmin
zmax_from = from_metal.zmax
if port.to_layername == 'GND': # special case bottom of simulation box
zmin_to = 0
zmax_to = 0
else:
to_metal = metals_list.getbylayername(port.to_layername)
if to_metal==None:
print('[ERROR] Invalid layer ' , port.to_layername, ' in port definition, not found in XML stackup file!')
sys.exit(1)
zmin_to = to_metal.zmin
zmax_to = to_metal.zmax
# if necessary, swap from and to position
if zmin_from < zmin_to:
# from layer is lower layer
zmin = zmax_from
zmax = zmin_to
else:
# to layer is lower layer
zmin = zmax_to
zmax = zmin_from
zmin_to = to_metal.zmin
zmax_to = to_metal.zmax
# if necessary, swap from and to position
if zmin_from < zmin_to:
# from layer is lower layer
zmin = zmax_from
zmax = zmin_to
else:
# to layer is lower layer
zmin = zmax_to
zmax = zmin_from
CSX_port = FDTD.AddLumpedPort(portnum, port_Z0, [xmin, ymin, zmin], [xmax, ymax, zmax], port_direction, voltage, priority=150)
# store CSX_port in the port object, for evaluation later
port.set_CSXport(CSX_port)
CSX_port = FDTD.AddLumpedPort(portnum, port_Z0, [xmin, ymin, zmin], [xmax, ymax, zmax], port_direction, voltage, priority=150)
# store CSX_port in the port object, for evaluation later
port.set_CSXport(CSX_port)
@ -226,33 +428,115 @@ def addPorts_to_CSX (CSX, excite_portnumbers,simulation_ports,FDTD, materials_li
def addMesh_to_CSX (CSX, allpolygons, dielectrics_list, metals_list, refined_cellsize, max_cellsize, margin, air_around, unit, z_mesh_function, xy_mesh_function):
# Add mesh using default method
mesh = CSX.GetGrid()
mesh.SetDeltaUnit(unit)
# meshing of dielectrics and metals
no_z_mesh_list = ['SiO2','LBE'] # exclude SiO2 from meshing because we only mesh metal layers in that region, exclude LBE because we mesh substrate
no_z_mesh_list = [] # exclude from meshing, specify stackup layer name here
mesh = z_mesh_function (mesh, dielectrics_list, metals_list, refined_cellsize, max_cellsize, air_around, no_z_mesh_list)
mesh = xy_mesh_function (mesh, allpolygons, margin, air_around, refined_cellsize, max_cellsize)
return mesh
def addFielddumps_to_CSX (FDTD, CSX, all_field_dumps, allpolygons, metals_list):
# Add field dumps for time and frequency domain and nf2ff, if any
if all_field_dumps.count > 0:
for field_dump in all_field_dumps.field_dumps:
if isinstance(field_dump, time_dump):
Dump = CSX.AddDump(field_dump.name,
file_type=field_dump.file_type,
dump_type=field_dump.dump_type,
sub_sampling=field_dump.subsampling)
elif isinstance(field_dump, frequency_dump):
Dump = CSX.AddDump(field_dump.name,
file_type=field_dump.file_type,
dump_type=field_dump.dump_type,
frequency=field_dump.frequency,
sub_sampling=field_dump.subsampling)
# add dump box
xmin, xmax, ymin, ymax = allpolygons.get_layer_bounding_box(field_dump.source_layernum)
zmin = metals_list.getbylayername(field_dump.from_layername).zmin + field_dump.offset_bottom
zmax = metals_list.getbylayername(field_dump.to_layername).zmax + field_dump.offset_top
Dump.AddBox([xmin,ymin,zmin], [xmax,ymax,zmax])
def setupSimulation (excite_portnumbers=None,
simulation_ports=None,
FDTD=None,
materials_list=None,
dielectrics_list=None,
metals_list=None,
allpolygons=None,
max_cellsize=None,
refined_cellsize=None,
margin=None,
unit=None,
z_mesh_function=util_meshlines.create_z_mesh,
xy_mesh_function=util_meshlines.create_standard_xy_mesh,
air_around=0,
field_dumps=False,
settings=None):
# This is the unction for model creation because we need to create and run separate CSX
# for each excitation. For S11,S21 we only need to excite port 1, but for S22,S12
# we need to excite port 2. This requires separate CSX with different port settings.
# This function can be called in two ways:
# 1) by all those positional parameters or
# 2) by passing just FDTD and settings dictionary, where everything is inside the settings dict
if dielectrics_list is None:
if settings is not None:
print('Getting simulation settings from "settings" dictionary')
# This is option 2, everything is inside the settings dict and we need to get it from there
excite_portnumbers = settings['excite_portnumbers']
simulation_ports = settings['simulation_ports']
materials_list = settings['materials_list']
dielectrics_list = settings['dielectrics_list']
metals_list = settings['metals_list']
allpolygons = settings['allpolygons']
refined_cellsize = settings['refined_cellsize']
margin = settings['margin']
unit = settings['unit']
z_mesh_function = settings.get('z_mesh_function',util_meshlines.create_z_mesh)
xy_mesh_function = settings.get('xy_mesh_function', util_meshlines.create_xy_mesh_from_polygons)
air_around = settings.get('air_around', 0)
field_dumps = settings.get('field_dumps', False)
# calculate maximum cellsize from wavelength in dielectric
fstop = settings.get('fstop',None)
unit = settings.get('unit',None)
cpw = settings.get('cells_per_wavelength',None)
if (fstop is not None) and (unit is not None) and (cpw is not None):
wavelength_air = 3e8/fstop / unit
max_cellsize = (wavelength_air)/(np.sqrt(materials_list.eps_max)*cpw)
else:
max_cellsize = settings.get('max_cellsize',None)
if max_cellsize is None:
print('If fstop, units and cells_per_wavelength are not included in settings, you must specify max_cellsize value')
exit(1)
else:
print('If positional parameters are not defined in setupSimulation, you must provide valid "settings" dictionary instead')
exit(1)
if FDTD is None:
print('FDTD must be passed to setupSimulation as named parameter, i.e. "FDTD=FDTD" in parameters')
exit(1)
def setupSimulation (excite_portnumbers,simulation_ports, FDTD, materials_list, dielectrics_list, metals_list, allpolygons, max_cellsize, refined_cellsize, margin, unit, z_mesh_function=util_meshlines.create_z_mesh, xy_mesh_function=util_meshlines.create_standard_xy_mesh, air_around=0):
# Define function for model creation because we need to create and run separate CSX
# for each excitation. For S11,S21 we only need to excite port 1, but for S22,S12
# we need to excite port 2. This requires separate CSX with different port settings.
CSX = ContinuousStructure()
FDTD.SetCSX(CSX)
# add geometries and return list of used materials
CSX, CSX_materials_list = addGeometry_to_CSX (CSX, excite_portnumbers,simulation_ports,FDTD, materials_list, dielectrics_list, metals_list, allpolygons)
CSX, CSX_materials_list = addDielectrics_to_CSX (CSX, CSX_materials_list, materials_list, dielectrics_list, allpolygons, margin, addPEC=(air_around>0))
CSX, CSX_materials_list = addDielectrics_to_CSX (CSX, CSX_materials_list, materials_list, dielectrics_list, allpolygons, margin, addPEC=False)
# add ports
CSX = addPorts_to_CSX (CSX, excite_portnumbers,simulation_ports,FDTD, materials_list, dielectrics_list, metals_list, allpolygons)
@ -263,7 +547,8 @@ def setupSimulation (excite_portnumbers,simulation_ports, FDTD, materials_list,
for poly in allpolygons.polygons:
layernum = poly.layernum
metal = metals_list.getbylayernumber(layernum)
if metal != None:
if metal is not None:
metal.is_used = True
# set polygon via property, used later for meshing
poly.is_via = metal.is_via
@ -271,6 +556,9 @@ def setupSimulation (excite_portnumbers,simulation_ports, FDTD, materials_list,
# add mesh
mesh = addMesh_to_CSX (CSX, allpolygons, dielectrics_list, metals_list, refined_cellsize, max_cellsize, margin, air_around, unit, z_mesh_function, xy_mesh_function )
if field_dumps != False:
addFielddumps_to_CSX (FDTD, CSX, field_dumps, allpolygons, metals_list)
# display mesh information (line count and smallest mesh cells)
meshinfo = util_meshlines.get_mesh_information(mesh)
print(meshinfo)
@ -278,8 +566,48 @@ def setupSimulation (excite_portnumbers,simulation_ports, FDTD, materials_list,
return FDTD
def runSimulation (excite_portnumbers, FDTD, sim_path, model_basename, preview_only, postprocess_only):
def runSimulation (excite_portnumbers=None,
FDTD=None,
sim_path=None,
model_basename=None,
preview_only=None,
postprocess_only=None,
force_simulation=False,
no_gui = False,
settings=None):
# This function runs the actual simulation in openEMS
# This function can be called in two ways:
# 1) by all those positional parameters or
# 2) by passing just FDTD and settings dictionary, where everything is inside the settings dict
if excite_portnumbers is None:
if settings is not None:
print('Getting simulation settings from "settings" dictionary')
# This is option 2, everything is inside the settings dict and we need to get it from there
excite_portnumbers = settings['excite_portnumbers']
sim_path = settings['sim_path']
model_basename = settings['model_basename']
preview_only = settings.get('preview_only',False)
postprocess_only = settings.get('postprocess_only','')
force_simulation = settings.get('force_simulation', False)
no_gui = settings.get('no_gui', False)
else:
print('If positional parameters are not defined in setupSimulation, you must provide valid "settings" dictionary instead')
exit(1)
if FDTD is None:
print('FDTD must be passed to setupSimulation as named parameter, i.e. "FDTD=FDTD" in parameters')
exit(1)
# If no_gui is enabled, always start simulation even if preview_only is True
# and force re-simulation, even if results already exist
if no_gui:
preview_only = False
postprocess_only = False
excitation_path = utilities.get_excitation_path (sim_path, excite_portnumbers)
if not postprocess_only:
@ -289,25 +617,157 @@ def runSimulation (excite_portnumbers, FDTD, sim_path, model_basename, preview_o
CSX.Write2XML(CSX_file)
# preview model
if 1 in excite_portnumbers: # only for first port excitation
if 1 in excite_portnumbers and not no_gui: # only for first port excitation
print('Starting AppCSXCAD 3D viewer with file: \n', CSX_file)
print('Close AppCSXCAD to continue or press <Ctrl>-C to abort')
ret = os.system(AppCSXCAD_BIN + ' "{}"'.format(CSX_file))
# for Linux, send warningas and errors to nowhere, so that we don't trash console with vtk warnings
if os.name == 'posix':
suffix = ' 2>/dev/null'
else:
suffix = ''
ret = os.system(AppCSXCAD_BIN + ' "{}"'.format(CSX_file) + suffix)
if ret != 0:
print('[ERROR] AppCSXCAD failed to launch. Exit code: ', ret)
sys.exit(1)
if not (preview_only or postprocess_only): # start simulation
print('Starting FDTD simulation for excitation ', str(excite_portnumbers))
try:
FDTD.Run(excitation_path) # DO NOT SPECIFY COMMAND LINE OPTIONS HERE! That will fail for repeated runs with multiple excitations.
print('FDTD simulation completed successfully for excitation ', str(excite_portnumbers))
except AssertionError as e:
print('[ERROR] AssertionError during FDTD simulation: ', e)
sys.exit(1)
# Check if we can read a hash file from the result folder
existing_data_hash = get_hash_from_data_folder(excitation_path)
# Create hash of newly created CSX file, we will store that to result folder when simulation is finished.
# This will enable checking for pre-existing data of the exact same model.
XML_hash = calculate_sha256_of_file(CSX_file)
if (existing_data_hash != XML_hash) or force_simulation:
# Hash is different or not found, or simulation is forced
print('Starting FDTD simulation for excitation ', str(excite_portnumbers))
try:
FDTD.Run(excitation_path) # DO NOT SPECIFY COMMAND LINE OPTIONS HERE! That will fail for repeated runs with multiple excitations.
print('FDTD simulation completed successfully for excitation ', str(excite_portnumbers))
# Now that simulation created output data, write the hash of the underlying XML model. This will help to identify existing data for this model.
write_hash_to_data_folder(excitation_path, XML_hash)
except AssertionError as e:
print('[ERROR] AssertionError during FDTD simulation: ', e)
sys.exit(1)
else:
print('Data for this model already exists, skipping simulation!')
print('To force re-simulation, add parameter "force_simulation=True" to the runSimulation() call.')
return excitation_path
return excitation_path
def runOpenEMS (excite_ports, settings):
# This is the all-in-one simulation function that creates openEMS model and runs all ports, on eafter another
# get settings from simulation model
preview_only = settings.get('preview_only', False)
postprocess_only = settings.get('postprocess_only', False)
######### end of function createSimulation () ##########
if not postprocess_only:
unit = settings.get('unit', 1e-6) # unit defaults to micron
margin = settings['margin'] # oversize of dielectric layers relative to drawing
fstart = settings['fstart']
fstop = settings['fstop']
numfreq = settings.get('numfreq', 401)
energy_limit = settings['energy_limit']
refined_cellsize = settings['refined_cellsize']
cells_per_wavelength = settings['cells_per_wavelength']
Boundaries = settings['Boundaries']
simulation_ports = settings['simulation_ports']
materials_list = settings['materials_list']
dielectrics_list = settings['dielectrics_list']
metals_list = settings['metals_list']
allpolygons = settings['allpolygons']
sim_path = settings['sim_path']
model_basename = settings['model_basename']
# calculate wavelength and max_cellsize in project units
wavelength_air = 3e8/fstop / unit
max_cellsize = (wavelength_air)/(np.sqrt(materials_list.eps_max)*cells_per_wavelength)
# define excitation and stop criteria and boundaries
FDTD = openEMS(EndCriteria=np.exp(energy_limit/10 * np.log(10)))
FDTD.SetGaussExcite( (fstart+fstop)/2, (fstop-fstart)/2 )
FDTD.SetBoundaryCond( Boundaries )
for port in simulation_ports.ports:
setupSimulation ([port.portnumber],
simulation_ports,
FDTD,
materials_list,
dielectrics_list,
metals_list,
allpolygons,
max_cellsize,
refined_cellsize,
margin,
unit,
xy_mesh_function=util_meshlines.create_xy_mesh_from_polygons)
runSimulation ([port.portnumber],
FDTD,
sim_path,
model_basename,
preview_only,
False)
# Initialize an empty matrix for S-parameters
num_ports = simulation_ports.portcount
s_params = np.empty((num_ports, num_ports, numfreq), dtype=object)
# Define frequency resolution. Due to FFT from Empire time domain results,
# this is postprocessing and we can change it again at any time.
f = np.linspace(fstart, fstop, numfreq)
# Populate the S-parameter matrix with simulation results
for i in range(1, num_ports + 1):
for j in range(1, num_ports + 1):
s_params[i-1, j-1] = utilities.calculate_Sij(i, j, f, sim_path, simulation_ports)
# Write to Touchstone *.snp file
snp_name = os.path.join(sim_path, model_basename + '.s' + str(num_ports) + 'p')
utilities.write_snp(s_params, f, snp_name)
print('Created S-parameter output file at ', snp_name)
# Utility functions for hash file.
# By creating and storing a hash of CSX file to the result folder when simulation is finished,
# we can identify pre-existing data of the exact same model. In this case, we can skip simulation.
def calculate_sha256_of_file(filename):
import hashlib
sha256_hash = hashlib.sha256()
with open(filename, 'rb') as f:
for byte_block in iter(lambda: f.read(4096), b""):
sha256_hash.update(byte_block)
return sha256_hash.hexdigest()
def write_hash_to_data_folder (excitation_path, hash_value):
filename = os.path.join(excitation_path, 'simulation_model.hash')
hashfile = open(filename, 'w')
hashfile.write(str(hash_value))
hashfile.close()
def get_hash_from_data_folder (excitation_path):
filename = os.path.join(excitation_path, 'simulation_model.hash')
hashvalue = ''
if os.path.isfile(filename):
hashfile = open(filename, "r")
hashvalue = hashfile.read()
hashfile.close()
return hashvalue

View File

@ -1,5 +1,22 @@
# Read XML file with SG13G2 stackup
########################################################################
#
# Copyright 2025 Volker Muehlhaus and IHP PDK Authors
#
# Licensed under the GNU General Public License, Version 3.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.gnu.org/licenses/gpl-3.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
########################################################################
# Read XML file with SG13G2 stackup
# File history:
# Initial version 20 Nov 2024 Volker Muehlhaus
@ -13,14 +30,24 @@ class stackup_material:
"""
stackup material object
"""
def __init__ (self, data):
def safe_get (key, default):
val = data.get(key)
if val is not None:
return val
else:
return default
self.name = data.get("Name")
self.type = data.get("Type")
self.eps = float(data.get("Permittivity"))
self.tand = float(data.get("DielectricLossTangent"))
self.sigma = float(data.get("Conductivity"))
self.color = data.get("Color")
self.type = data.get("Type").upper()
self.eps = float(safe_get("Permittivity", 1))
self.tand = float(safe_get("DielectricLossTangent", 0))
self.sigma = float(safe_get("Conductivity", 0))
self.Rs = float(safe_get("Rs", 0))
self.color = data.get("Color") # no default here, will be handled later
def __str__ (self):
@ -70,6 +97,7 @@ class dielectric_layer:
self.zmax = 0
self.is_top = False
self.is_bottom = False
self.gdsboundary = data.get("Boundary") # optional entry in stackup file
def __str__ (self):
# string representation
@ -104,8 +132,19 @@ class dielectric_layers_list:
for dielectric in self.dielectrics:
if dielectric.name == name_to_find:
found = dielectric
return dielectric
return found
def get_boundary_layers (self):
# For substrates where Boundary is specified in dielectric layers, return a list of those layers
# This is required for the next step, GDSII reader, which needs to know the layers to read.
boundary_layer_list = []
for dielectric in self.dielectrics:
if dielectric.gdsboundary is not None:
value = int(dielectric.gdsboundary)
if value not in boundary_layer_list:
boundary_layer_list.append(value)
return boundary_layer_list
# -------------------- conductor layers (metal and via) ---------------------------
@ -118,13 +157,24 @@ class metal_layer:
def __init__ (self, data):
self.name = data.get("Name")
self.layernum = data.get("Layer")
self.type = data.get("Type")
self.type = data.get("Type").upper()
self.material = data.get("Material")
self.zmin = float(data.get("Zmin"))
self.zmax = float(data.get("Zmax"))
# force to sheet if zero thickness
if data.get("Zmin") == data.get("Zmax"):
self.type = "SHEET"
if self.type == "SHEET" and not self.zmin==self.zmax:
print('ERROR: Layer ', self.name, ' is defined as sheet layer, but Zmax is different from Zmin. This is not valid!')
exit(1)
self.thickness = self.zmax-self.zmin
self.is_via = (self.type=="via")
self.is_metal = (self.type=="conductor")
self.is_via = (self.type=="VIA")
self.is_metal = (self.type=="CONDUCTOR")
self.is_dielectric = (self.type=="DIELECTRIC")
self.is_sheet = (self.type=="SHEET")
self.is_used = False
def __str__ (self):
@ -187,7 +237,6 @@ class metal_layers_list:
metal.zmax = metal.zmax + offset
# ----------- parse substrate file, get materials from list created before -----------
def read_substrate (XML_filename):
@ -248,7 +297,7 @@ def read_substrate (XML_filename):
if __name__ == "__main__":
XML_filename = "SG13.xml"
XML_filename = "SG13G2.xml"
materials_list, dielectrics_list, metals_list = read_substrate (XML_filename)
for material in materials_list.materials:
@ -274,5 +323,4 @@ if __name__ == "__main__":
print('TopMetal1 layer number => ', metal.layernum)

View File

@ -1,4 +1,20 @@
# -*- coding: utf-8 -*-
########################################################################
#
# Copyright 2025 Volker Muehlhaus and IHP PDK Authors
#
# Licensed under the GNU General Public License, Version 3.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.gnu.org/licenses/gpl-3.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
########################################################################
import os, tempfile, platform, sys

View File

@ -0,0 +1,155 @@
import os
import sys
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), 'modules')))
import modules.util_stackup_reader as stackup_reader
import modules.util_gds_reader as gds_reader
import modules.util_utilities as utilities
import modules.util_simulation_setup as simulation_setup
import modules.util_meshlines as util_meshlines
import os
import matplotlib.pyplot as plt # pip install matplotlib
import numpy as np
from CSXCAD import ContinuousStructure
from CSXCAD import AppCSXCAD_BIN
from openEMS import openEMS
from openEMS.physical_constants import *
# Model comments
# Changes for IHP Analog Academy in 01/2026:
# Changed to MUR boundary at zmax so that radiation can be absorbed.
# From experience, using MUR can create numerical issue when it touches the lossy silicon, so it is ONLY used at zmax.
# All other boundaries use PEC, for best simulation speed.
# Distance to side walls reduced, we have not much field there because of the Metal1 ground layout.
# This model uses an alternative syntax where are settings are stored in settings dictionary,
# which makes it easier to implement future extensions without touching again the
# simulation model code
# ======================== workflow settings ================================
settings = {}
settings['preview_only'] = False # @brief Enable this to preview model/mesh only, without starting simulation
settings['postprocess_only'] = False # @brief Enable this to show existing results only, without starting simulation
# ===================== input files and path settings =======================
# GDS filename
gds_filename = "../layout_gds/50_ghz_mpa_core_no_BJT.gds" # geometries
XML_filename = "SG13G2.xml" # stackup
settings['purpose'] = [0] # @brief Which GDSII data type is evaluated? Values in [] can be separated by comma
settings['preprocess_gds'] = False # @brief Preprocess GDSII for safe handling of cutouts/holes?
settings['merge_polygon_size'] = 0.5 # @brief Merge via polygons with distance less than .. microns, set to 0 to disable via merging.
# get path for this simulation file
script_path = utilities.get_script_path(__file__)
# use script filename as model basename
model_basename = utilities.get_basename(__file__)
# set and create directory for simulation output
sim_path = utilities.create_sim_path (script_path,model_basename)
print('Simulation data directory: ', sim_path)
# ======================== simulation settings ================================
settings['unit'] = 1e-06 # @brief Geometry units, 1E-6 is in microns
settings['margin'] = 20 # @brief Distance from GDSII geometry boundary to simulation boundary, in project units
settings['fstart'] = 0e9 # @brief start frequency [Hz]
settings['fstop'] = 350e9 # @brief stop frequency [Hz]
settings['numfreq'] = 401 # @brief number of frequency steps [Hz]
settings['refined_cellsize'] = 0.5 # @brief mesh cell size in conductor region, in project units
# choices for boundary:
# 'PEC' : perfect electric conductor (default)
# 'PMC' : perfect magnetic conductor, useful for symmetries
# 'MUR' : simple MUR absorbing boundary conditions
# 'PML_8' : PML absorbing boundary conditions
settings['Boundaries'] = ['PEC', 'PEC', 'PEC', 'PEC', 'PEC', 'MUR']
settings['cells_per_wavelength'] = 20 # @brief how many mesh cells per wavelength, must be 10 or more
settings['energy_limit'] = -50 # @brief end criteria for residual energy (dB), default is -40
# ports from GDSII Data, polygon geometry from specified special layer
# note that for multiport simulation, excitations are switched on/off in simulation_setup.createSimulation below
simulation_ports = simulation_setup.all_simulation_ports()
# instead of in-plane port specified with target_layername, we here use via port specified with from_layername and to_layername. GND means bottom of simulation box
simulation_ports.add_port(simulation_setup.simulation_port(portnumber=1, voltage=1, port_Z0=50, source_layernum=201, from_layername='Metal3', to_layername='TopMetal2', direction='z'))
simulation_ports.add_port(simulation_setup.simulation_port(portnumber=2, voltage=1, port_Z0=50, source_layernum=202, from_layername='Metal3', to_layername='TopMetal2', direction='z'))
simulation_ports.add_port(simulation_setup.simulation_port(portnumber=3, voltage=1, port_Z0=50, source_layernum=203, target_layername='Metal2', direction='-x'))
simulation_ports.add_port(simulation_setup.simulation_port(portnumber=4, voltage=1, port_Z0=50, source_layernum=204, target_layername='Metal2', direction='x'))
# ======================== simulation ================================
# get technology stackup data
materials_list, dielectrics_list, metals_list = stackup_reader.read_substrate (XML_filename)
# get list of layers from technology
layernumbers = metals_list.getlayernumbers()
layernumbers.extend(simulation_ports.portlayers)
# read geometries from GDSII, only purpose 0
allpolygons = gds_reader.read_gds(gds_filename,
layernumbers,
purposelist=settings['purpose'],
metals_list=metals_list,
preprocess=settings['preprocess_gds'],
merge_polygon_size=settings['merge_polygon_size'])
########### create model, run and post-process ###########
settings['simulation_ports'] = simulation_ports
settings['materials_list'] = materials_list
settings['dielectrics_list'] = dielectrics_list
settings['metals_list'] = metals_list
settings['layernumbers'] = layernumbers
settings['allpolygons'] = allpolygons
settings['sim_path'] = sim_path
settings['model_basename'] = model_basename
# define excitation and stop criteria and boundaries
FDTD = openEMS(EndCriteria=np.exp(settings['energy_limit']/10 * np.log(10)))
FDTD.SetGaussExcite((settings['fstart'] + settings['fstop'])/2,
(settings['fstop'] - settings['fstart'])/2)
FDTD.SetBoundaryCond(settings['Boundaries'])
########### create model, run and post-process ###########
# run all port excitations, one after another
for port in simulation_ports.ports:
settings['excite_portnumbers'] = [port.portnumber]
# prepare model from GDSII data
simulation_setup.setupSimulation(FDTD=FDTD, settings=settings) # must use named parameters when using settings dict!
# preview model and start simulation
simulation_setup.runSimulation(FDTD=FDTD, settings=settings) # must use named parameters when using settings dict!
# Initialize an empty matrix for S-parameters
num_ports = simulation_ports.portcount
s_params = np.empty((num_ports, num_ports, settings['numfreq']), dtype=object)
# Define frequency resolution (postprocessing)
f = np.linspace(settings['fstart'], settings['fstop'], settings['numfreq'])
# Populate the S-parameter matrix with simulation results
for i in range(1, num_ports + 1):
for j in range(1, num_ports + 1):
s_params[i-1, j-1] = utilities.calculate_Sij(i, j, f, sim_path, simulation_ports)
# Write to Touchstone *.snp file
snp_name = os.path.join(sim_path, model_basename + '.s' + str(num_ports) + 'p')
utilities.write_snp(s_params, f, snp_name)
print('Created S-parameter output file at ', snp_name)

View File

@ -0,0 +1,58 @@
{
"ports": [
{
"portnumber": 1,
"Z0": 50,
"direction": "Z",
"length": 7.7102999999999895,
"width": 3.0,
"xmin": -72.46000000000001,
"xmax": -71.96000000000001,
"ymin": -44.175000000000004,
"ymax": -41.175000000000004,
"zmin": 157.27,
"zmax": 164.9803
},
{
"portnumber": 2,
"Z0": 50,
"direction": "Z",
"length": 7.7102999999999895,
"width": 3.0,
"xmin": -12.44,
"xmax": -11.94,
"ymin": -44.08,
"ymax": -41.08,
"zmin": 157.27,
"zmax": 164.9803
},
{
"portnumber": 3,
"Z0": 50,
"direction": "X",
"length": -3.3999999999999986,
"width": -18.595000000000006,
"xmin": -44.935,
"xmax": -48.335,
"ymin": -33.33,
"ymax": -51.925000000000004,
"zmin": 155.75,
"zmax": 156.24
},
{
"portnumber": 4,
"Z0": 50,
"direction": "X",
"length": 3.865000000000002,
"width": 18.5,
"xmin": -39.93,
"xmax": -36.065,
"ymin": -51.875,
"ymax": -33.375,
"zmin": 155.75,
"zmax": 156.24
}
],
"unit": 1e-06,
"name": "run_core_50ghz_mpa"
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 158 KiB

After

Width:  |  Height:  |  Size: 142 KiB

View File

@ -1,8 +1,77 @@
% time-domain current integration by openEMS v0.0.35-108-gc651cce @Sat Jun 21 22:34:37 2025
% start-coordinates: (-7.276e-05,-4.4427e-05,0.000161037) m -> [25,68,60]
% stop-coordinates: (-7.196e-05,-4.11275e-05,0.000161037) m -> [27,75,60]
% time-domain current integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:43:31 2026
% start-coordinates: (-7.296e-05,-4.46197e-05,0.00016068) m -> [11,42,30]
% stop-coordinates: (-7.196e-05,-4.11275e-05,0.00016068) m -> [13,48,30]
% t/s current
2.44035880086e-16 0
3.57024492566e-13 -2.36289130623e-11
7.13804949251e-13 -2.68896710454e-11
1.07058540594e-12 -1.46053872122e-12
4.51346598274e-16 0
3.57015159235e-13 -1.80129054034e-11
7.13578971872e-13 -2.03886438982e-11
1.07014278451e-12 -1.0219459827e-12
1.42670659714e-12 7.3729543304e-11
1.78327040978e-12 2.60666543905e-10
2.13983422242e-12 6.2494204256e-10
2.49639803505e-12 1.19604981474e-09
2.85296184769e-12 1.88819049285e-09
3.20952566033e-12 2.38809638731e-09
3.56608947296e-12 2.07569672561e-09
3.9226532856e-12 5.77042337524e-11
4.27921709824e-12 -4.57603022141e-09
4.63578091087e-12 -1.22467636032e-08
4.99234472351e-12 -2.22509193293e-08
5.34890853615e-12 -3.22951194676e-08
5.70547234878e-12 -3.85951324233e-08
6.06203616142e-12 -3.68238737281e-08
6.41859997406e-12 -2.37940582792e-08
6.77516378669e-12 7.04935498863e-10
7.13172759933e-12 3.28357430135e-08
7.48829141197e-12 6.51910099236e-08
7.8448552246e-12 8.89626434741e-08
8.20141903724e-12 9.70764801878e-08
8.55798284988e-12 8.6944908162e-08
8.91454666251e-12 6.15384294633e-08
9.27111047515e-12 2.82419581055e-08
9.62767428779e-12 -3.96960730953e-09
9.98423810042e-12 -2.77201444021e-08
1.03408019131e-11 -3.94067818377e-08
1.06973657257e-11 -3.96132513458e-08
1.10539295383e-11 -3.19176720609e-08
1.1410493351e-11 -2.09323740563e-08
1.17670571636e-11 -1.05439497133e-08
1.21236209762e-11 -2.97047608733e-09
1.24801847889e-11 1.27169041964e-09
1.28367486015e-11 2.81029532978e-09
1.31933124142e-11 2.70932698498e-09
1.35498762268e-11 1.93408378202e-09
1.39064400394e-11 1.10720377311e-09
1.42630038521e-11 5.02447305983e-10
1.46195676647e-11 1.58666496608e-10
1.49761314773e-11 7.76077726389e-12
1.533269529e-11 -3.49214615558e-11
1.56892591026e-11 -3.26726944111e-11
1.60458229152e-11 -1.90036285319e-11
1.64023867279e-11 -8.07646224205e-12
1.67589505405e-11 -6.80657787078e-12
1.71155143532e-11 -7.82857199205e-12
1.74720781658e-11 -8.35213755795e-12
1.78286419784e-11 -8.63467804202e-12
1.81852057911e-11 -8.44714055648e-12
1.85417696037e-11 -8.27473072701e-12
1.88983334163e-11 -8.4616619267e-12
1.9254897229e-11 -8.67618910744e-12
1.96114610416e-11 -8.71204670905e-12
1.99680248543e-11 -8.76775388403e-12
2.03245886669e-11 -8.80061475084e-12
2.06811524795e-11 -8.87998355403e-12
2.10377162922e-11 -8.9948595447e-12
2.13942801048e-11 -9.14753949671e-12
2.17508439174e-11 -9.23155822619e-12
2.21074077301e-11 -8.97106260805e-12
2.24639715427e-11 -9.15743522678e-12
2.28205353553e-11 -9.22987467705e-12
2.3177099168e-11 -9.33643180129e-12
2.35336629806e-11 -9.34629543897e-12
2.38902267933e-11 -9.41993791997e-12
2.42467906059e-11 -9.43435173734e-12
2.46033544185e-11 -9.57414269392e-12
2.49599182312e-11 -9.67772563476e-12
2.53164820438e-11 -9.6758885626e-12
2.56730458564e-11 -9.60674855638e-12

View File

@ -1,8 +1,77 @@
% time-domain current integration by openEMS v0.0.35-108-gc651cce @Sat Jun 21 22:34:37 2025
% start-coordinates: (-1.274e-05,-4.4427e-05,0.000161037) m -> [156,68,60]
% stop-coordinates: (-1.194e-05,-4.11275e-05,0.000161037) m -> [158,75,60]
% time-domain current integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:43:31 2026
% start-coordinates: (-1.294e-05,-4.46197e-05,0.00016068) m -> [94,42,30]
% stop-coordinates: (-1.194e-05,-4.11275e-05,0.00016068) m -> [96,48,30]
% t/s current
2.44035880086e-16 0
3.57024492566e-13 7.98288369544e-14
7.13804949251e-13 1.08618094987e-12
1.07058540594e-12 7.5270844245e-13
4.51346598274e-16 0
3.57015159235e-13 5.91259829183e-14
7.13578971872e-13 6.47064379074e-13
1.07014278451e-12 5.3572689904e-13
1.42670659714e-12 -7.24388268553e-13
1.78327040978e-12 -3.17219124232e-12
2.13983422242e-12 -9.06556427149e-12
2.49639803505e-12 -1.87188181622e-11
2.85296184769e-12 -3.11954490018e-11
3.20952566033e-12 -4.16488822597e-11
3.56608947296e-12 -3.85875151276e-11
3.9226532856e-12 -4.15604529957e-12
4.27921709824e-12 8.02309815806e-11
4.63578091087e-12 2.23367505048e-10
4.99234472351e-12 4.09703881932e-10
5.34890853615e-12 5.85903214834e-10
5.70547234878e-12 6.64935551065e-10
6.06203616142e-12 5.46004796931e-10
6.41859997406e-12 1.64235694489e-10
6.77516378669e-12 -4.6258138986e-10
7.13172759933e-12 -1.20295051698e-09
7.48829141197e-12 -1.83218218375e-09
7.8448552246e-12 -2.10519601751e-09
8.20141903724e-12 -1.85947057751e-09
8.55798284988e-12 -1.10123743458e-09
8.91454666251e-12 -2.48756536203e-11
9.27111047515e-12 1.05105302239e-09
9.62767428779e-12 1.80826775775e-09
9.98423810042e-12 2.05302352896e-09
1.03408019131e-11 1.78138448437e-09
1.06973657257e-11 1.15949549961e-09
1.10539295383e-11 4.34735331067e-10
1.1410493351e-11 -1.68716790538e-10
1.17670571636e-11 -5.25243348815e-10
1.21236209762e-11 -6.23963547497e-10
1.24801847889e-11 -5.35611888175e-10
1.28367486015e-11 -3.61474100652e-10
1.31933124142e-11 -1.86237872346e-10
1.35498762268e-11 -5.71644710734e-11
1.39064400394e-11 1.4015877868e-11
1.42630038521e-11 3.90518832549e-11
1.46195676647e-11 3.75660474949e-11
1.49761314773e-11 2.60858504936e-11
1.533269529e-11 1.45866183715e-11
1.56892591026e-11 6.42805600415e-12
1.60458229152e-11 1.96682882654e-12
1.64023867279e-11 1.98294112792e-13
1.67589505405e-11 -4.16646968662e-13
1.71155143532e-11 2.68212440647e-14
1.74720781658e-11 4.2021426486e-13
1.78286419784e-11 3.99613420696e-13
1.81852057911e-11 3.08244532329e-13
1.85417696037e-11 2.60122218904e-13
1.88983334163e-11 2.54986163477e-13
1.9254897229e-11 2.10492363015e-13
1.96114610416e-11 2.89500980697e-13
1.99680248543e-11 2.37638359511e-13
2.03245886669e-11 2.31681590145e-13
2.06811524795e-11 1.49876571115e-13
2.10377162922e-11 3.05616643104e-13
2.13942801048e-11 1.05310264632e-13
2.17508439174e-11 2.68784154005e-13
2.21074077301e-11 8.13470859141e-14
2.24639715427e-11 5.70137470221e-14
2.28205353553e-11 2.77108387235e-13
2.3177099168e-11 3.48533485059e-13
2.35336629806e-11 2.35259674155e-13
2.38902267933e-11 7.70912196926e-14
2.42467906059e-11 8.15376005646e-14
2.46033544185e-11 1.59878376814e-13
2.49599182312e-11 2.15608076098e-13
2.53164820438e-11 2.2457499727e-13
2.56730458564e-11 1.26970496291e-13

View File

@ -1,8 +1,77 @@
% time-domain current integration by openEMS v0.0.35-108-gc651cce @Sat Jun 21 22:34:37 2025
% start-coordinates: (-4.6935e-05,-5.22e-05,0.00015527) m -> [81,46,39]
% stop-coordinates: (-4.6935e-05,-3.33525e-05,0.00015624) m -> [81,96,42]
% time-domain current integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:43:31 2026
% start-coordinates: (-4.78375e-05,-5.24e-05,0.00015475) m -> [46,27,20]
% stop-coordinates: (-4.78375e-05,-3.33525e-05,0.00015624) m -> [46,63,22]
% t/s current
2.44035880086e-16 -0
3.57024492566e-13 9.1240591471e-12
7.13804949251e-13 2.19632749487e-11
1.07058540594e-12 2.29866386342e-11
4.51346598274e-16 -0
3.57015159235e-13 7.18243997264e-12
7.13578971872e-13 1.66841141597e-11
1.07014278451e-12 1.71175851271e-11
1.42670659714e-12 -6.23647661291e-12
1.78327040978e-12 -8.9129023606e-11
2.13983422242e-12 -2.86172030517e-10
2.49639803505e-12 -6.55440646202e-10
2.85296184769e-12 -1.21415921761e-09
3.20952566033e-12 -1.85741044767e-09
3.56608947296e-12 -2.25742602389e-09
3.9226532856e-12 -1.79731751704e-09
4.27921709824e-12 3.72622405154e-10
4.63578091087e-12 5.07028863339e-09
4.99234472351e-12 1.2593337928e-08
5.34890853615e-12 2.21374829579e-08
5.70547234878e-12 3.14148174141e-08
6.06203616142e-12 3.6823490035e-08
6.41859997406e-12 3.43894974719e-08
6.77516378669e-12 2.13455617626e-08
7.13172759933e-12 -2.23333418425e-09
7.48829141197e-12 -3.25609796903e-08
7.8448552246e-12 -6.26967064932e-08
8.20141903724e-12 -8.45934806648e-08
8.55798284988e-12 -9.19286549106e-08
8.91454666251e-12 -8.25072419275e-08
9.27111047515e-12 -5.91253446203e-08
9.62767428779e-12 -2.84809456019e-08
9.98423810042e-12 1.35271416291e-09
1.03408019131e-11 2.37293225069e-08
1.06973657257e-11 3.53255380503e-08
1.10539295383e-11 3.6507181278e-08
1.1410493351e-11 3.03119520595e-08
1.17670571636e-11 2.07682351316e-08
1.21236209762e-11 1.13624825104e-08
1.24801847889e-11 4.19077839098e-09
1.28367486015e-11 -1.22266002878e-10
1.31933124142e-11 -1.98704963594e-09
1.35498762268e-11 -2.26066654285e-09
1.39064400394e-11 -1.77955283842e-09
1.42630038521e-11 -1.12412457121e-09
1.46195676647e-11 -5.85780701723e-10
1.49761314773e-11 -2.4421253908e-10
1.533269529e-11 -6.93045690281e-11
1.56892591026e-11 -2.08849430805e-13
1.60458229152e-11 1.66108203581e-11
1.64023867279e-11 1.35824216457e-11
1.67589505405e-11 7.83167107554e-12
1.71155143532e-11 7.30603424981e-12
1.74720781658e-11 7.43127955005e-12
1.78286419784e-11 7.63959208394e-12
1.81852057911e-11 7.80281741997e-12
1.85417696037e-11 7.7032295473e-12
1.88983334163e-11 7.75696434169e-12
1.9254897229e-11 7.79125895745e-12
1.96114610416e-11 8.07667127622e-12
1.99680248543e-11 8.04605167215e-12
2.03245886669e-11 8.13665541194e-12
2.06811524795e-11 8.15776265983e-12
2.10377162922e-11 8.20627073239e-12
2.13942801048e-11 8.35250098252e-12
2.17508439174e-11 8.51764839216e-12
2.21074077301e-11 8.52435656784e-12
2.24639715427e-11 8.48569391837e-12
2.28205353553e-11 8.6692328663e-12
2.3177099168e-11 8.71005784858e-12
2.35336629806e-11 8.79264890064e-12
2.38902267933e-11 8.87012512052e-12
2.42467906059e-11 8.80876448173e-12
2.46033544185e-11 8.83735359197e-12
2.49599182312e-11 8.97642377096e-12
2.53164820438e-11 9.05277935948e-12
2.56730458564e-11 9.09797150811e-12

View File

@ -1,8 +1,77 @@
% time-domain current integration by openEMS v0.0.35-108-gc651cce @Sat Jun 21 22:34:37 2025
% start-coordinates: (-3.82975e-05,-5.22e-05,0.00015527) m -> [101,46,39]
% stop-coordinates: (-3.82975e-05,-3.33525e-05,0.00015624) m -> [101,96,42]
% time-domain current integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:43:31 2026
% start-coordinates: (-3.87138e-05,-5.24e-05,0.00015475) m -> [59,27,20]
% stop-coordinates: (-3.87138e-05,-3.33525e-05,0.00015624) m -> [59,63,22]
% t/s current
2.44035880086e-16 0
3.57024492566e-13 -2.66369527347e-13
7.13804949251e-13 5.72306633508e-13
1.07058540594e-12 2.0503809425e-13
4.51346598274e-16 0
3.57015159235e-13 -1.40796662523e-13
7.13578971872e-13 5.59607481881e-13
1.07014278451e-12 -4.57328402578e-14
1.42670659714e-12 -5.09050321427e-13
1.78327040978e-12 -1.76917410843e-12
2.13983422242e-12 -4.5789032288e-12
2.49639803505e-12 -9.39284414136e-12
2.85296184769e-12 -1.50110757158e-11
3.20952566033e-12 -1.84638658529e-11
3.56608947296e-12 -1.3582652364e-11
3.9226532856e-12 8.43942884327e-12
4.27921709824e-12 5.47012470042e-11
4.63578091087e-12 1.25367688453e-10
4.99234472351e-12 2.05307174039e-10
5.34890853615e-12 2.62307869869e-10
5.70547234878e-12 2.5041516083e-10
6.06203616142e-12 1.2968895402e-10
6.41859997406e-12 -1.08832012846e-10
6.77516378669e-12 -4.24285523382e-10
7.13172759933e-12 -7.22148396637e-10
7.48829141197e-12 -8.84127659972e-10
7.8448552246e-12 -8.16698708661e-10
8.20141903724e-12 -5.00606334164e-10
8.55798284988e-12 -1.2862932941e-11
8.91454666251e-12 4.96906960024e-10
9.27111047515e-12 8.65817417761e-10
9.62767428779e-12 9.86456583085e-10
9.98423810042e-12 8.4641743614e-10
1.03408019131e-11 5.26028720582e-10
1.06973657257e-11 1.53989404561e-10
1.10539295383e-11 -1.51959195227e-10
1.1410493351e-11 -3.23851723216e-10
1.17670571636e-11 -3.56832563497e-10
1.21236209762e-11 -2.91820484444e-10
1.24801847889e-11 -1.85145301868e-10
1.28367486015e-11 -8.39984609646e-11
1.31933124142e-11 -1.34175526592e-11
1.35498762268e-11 2.20379062221e-11
1.39064400394e-11 3.08403372284e-11
1.42630038521e-11 2.57215828497e-11
1.46195676647e-11 1.64273698811e-11
1.49761314773e-11 8.48498788592e-12
1.533269529e-11 3.14510418577e-12
1.56892591026e-11 4.64724612959e-13
1.60458229152e-11 -4.66177985971e-13
1.64023867279e-11 -6.09324439863e-13
1.67589505405e-11 -3.85558772409e-13
1.71155143532e-11 4.77779708158e-14
1.74720781658e-11 -1.30192081074e-13
1.78286419784e-11 -2.64739077015e-13
1.81852057911e-11 -2.16641808659e-13
1.85417696037e-11 -1.19951683135e-13
1.88983334163e-11 -6.61622449535e-14
1.9254897229e-11 -1.39945130137e-13
1.96114610416e-11 -1.9986367162e-13
1.99680248543e-11 -2.15780518453e-13
2.03245886669e-11 -1.92915128316e-13
2.06811524795e-11 -1.49217010276e-13
2.10377162922e-11 -5.24309328592e-14
2.13942801048e-11 -2.57148577605e-13
2.17508439174e-11 -1.75352137324e-13
2.21074077301e-11 -8.64990587837e-14
2.24639715427e-11 -9.59528680469e-14
2.28205353553e-11 -2.74171961176e-14
2.3177099168e-11 -1.66683182014e-13
2.35336629806e-11 -1.51003341775e-13
2.38902267933e-11 -1.40559655928e-13
2.42467906059e-11 -2.39641206184e-14
2.46033544185e-11 -6.96483886189e-14
2.49599182312e-11 -7.41805705404e-14
2.53164820438e-11 -9.09983893793e-14
2.56730458564e-11 -9.90702745535e-14

View File

@ -1,8 +1,77 @@
% time-domain voltage integration by openEMS v0.0.35-108-gc651cce @Sat Jun 21 22:34:37 2025
% start-coordinates: (-7.246e-05,-4.26269e-05,0.00015727) m -> [26,72,46]
% stop-coordinates: (-7.246e-05,-4.26269e-05,0.00016498) m -> [26,72,74]
% time-domain voltage integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:43:31 2026
% start-coordinates: (-7.246e-05,-4.3075e-05,0.00015727) m -> [12,45,24]
% stop-coordinates: (-7.246e-05,-4.3075e-05,0.00016498) m -> [12,45,34]
% t/s voltage
0 -0
3.56780456686e-13 -1.08553834324e-09
7.13560913371e-13 -1.07722674877e-09
1.07034137006e-12 5.61411677563e-10
3.56563812637e-13 -8.14880007222e-10
7.13127625273e-13 -8.03904165458e-10
1.06969143791e-12 4.29286224624e-10
1.42625525055e-12 4.77825440326e-09
1.78281906318e-12 1.49624697077e-08
2.13938287582e-12 3.38156367352e-08
2.49594668846e-12 6.1959843034e-08
2.85251050109e-12 9.36085977621e-08
3.20907431373e-12 1.1176748016e-07
3.56563812637e-12 8.51046841888e-08
3.922201939e-12 -2.85091900087e-08
4.27876575164e-12 -2.68212323462e-07
4.63532956428e-12 -6.45719470782e-07
4.99189337691e-12 -1.11716840934e-06
5.34845718955e-12 -1.56608302859e-06
5.70502100219e-12 -1.81455076387e-06
6.06158481482e-12 -1.67148878916e-06
6.41814862746e-12 -1.00997588959e-06
6.7747124401e-12 1.55973847171e-07
7.13127625273e-12 1.63439198531e-06
7.48784006537e-12 3.08757702783e-06
7.84440387801e-12 4.13321700421e-06
8.20096769064e-12 4.47809625825e-06
8.55753150328e-12 4.02704833391e-06
8.91409531592e-12 2.91760764526e-06
9.27065912855e-12 1.46494160447e-06
9.62722294119e-12 4.39194431934e-08
9.98378675383e-12 -1.03804718776e-06
1.03403505665e-11 -1.62506923118e-06
1.06969143791e-11 -1.72792007902e-06
1.10534781917e-11 -1.47876965428e-06
1.14100420044e-11 -1.05709985121e-06
1.1766605817e-11 -6.22149219254e-07
1.21231696296e-11 -2.74543584311e-07
1.24797334423e-11 -5.06413957435e-08
1.28362972549e-11 6.06050929441e-08
1.31928610676e-11 9.31156050044e-08
1.35494248802e-11 8.3250971894e-08
1.39059886928e-11 5.84250123836e-08
1.42625525055e-11 3.42631223393e-08
1.46191163181e-11 1.68462843675e-08
1.49756801307e-11 6.6179867142e-09
1.53322439434e-11 1.64723806123e-09
1.5688807756e-11 -2.39582555184e-10
1.60453715686e-11 -6.8309250964e-10
1.64019353813e-11 -6.42895299496e-10
1.67584991939e-11 -7.13972481831e-10
1.71150630066e-11 -6.62897913645e-10
1.74716268192e-11 -6.35502601931e-10
1.78281906318e-11 -6.22918525789e-10
1.81847544445e-11 -6.31485093383e-10
1.85413182571e-11 -6.39650932915e-10
1.88978820697e-11 -6.30449657757e-10
1.92544458824e-11 -6.18705215533e-10
1.9611009695e-11 -6.17081944571e-10
1.99675735077e-11 -6.14067754978e-10
2.03241373203e-11 -6.12746482026e-10
2.06807011329e-11 -6.10129662071e-10
2.10372649456e-11 -6.02357063534e-10
2.13938287582e-11 -5.9534546043e-10
2.17503925708e-11 -5.90306949155e-10
2.21069563835e-11 -6.03336172689e-10
2.24635201961e-11 -5.94021342532e-10
2.28200840087e-11 -5.91202420352e-10
2.31766478214e-11 -5.84156206046e-10
2.3533211634e-11 -5.84807618997e-10
2.38897754467e-11 -5.81057157251e-10
2.42463392593e-11 -5.79603722656e-10
2.46029030719e-11 -5.72801077403e-10
2.49594668846e-11 -5.67289756837e-10
2.53160306972e-11 -5.66311820355e-10
2.56725945098e-11 -5.70899535979e-10

View File

@ -1,8 +1,77 @@
% time-domain voltage integration by openEMS v0.0.35-108-gc651cce @Sat Jun 21 22:34:37 2025
% start-coordinates: (-1.244e-05,-4.26269e-05,0.00015727) m -> [157,72,46]
% stop-coordinates: (-1.244e-05,-4.26269e-05,0.00016498) m -> [157,72,74]
% time-domain voltage integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:43:31 2026
% start-coordinates: (-1.244e-05,-4.2175e-05,0.00015727) m -> [95,46,24]
% stop-coordinates: (-1.244e-05,-4.2175e-05,0.00016498) m -> [95,46,34]
% t/s voltage
0 -0
3.56780456686e-13 -3.56798952498e-12
7.13560913371e-13 -5.45528151732e-11
1.07034137006e-12 -3.61752977834e-11
3.56563812637e-13 -2.66066845883e-12
7.13127625273e-13 -3.03744314856e-11
1.06969143791e-12 -2.74922029586e-11
1.42625525055e-12 3.83205459552e-11
1.78281906318e-12 1.54956815608e-10
2.13938287582e-12 4.45856332756e-10
2.49594668846e-12 9.28303670045e-10
2.85251050109e-12 1.55434790039e-09
3.20907431373e-12 2.07595260426e-09
3.56563812637e-12 1.93428217887e-09
3.922201939e-12 2.35107579238e-10
4.27876575164e-12 -3.95226709693e-09
4.63532956428e-12 -1.10708502365e-08
4.99189337691e-12 -2.03561038026e-08
5.34845718955e-12 -2.9177496419e-08
5.70502100219e-12 -3.31900438244e-08
6.06158481482e-12 -2.73710333287e-08
6.41814862746e-12 -8.45131042926e-09
6.7747124401e-12 2.27336917069e-08
7.13127625273e-12 5.96786549067e-08
7.48784006537e-12 9.12019810784e-08
7.84440387801e-12 1.05057607946e-07
8.20096769064e-12 9.30725949644e-08
8.55753150328e-12 5.54593149182e-08
8.91409531592e-12 1.83056844683e-09
9.27065912855e-12 -5.19530658494e-08
9.62722294119e-12 -8.99765484341e-08
9.98378675383e-12 -1.0247983484e-07
1.03403505665e-11 -8.91665301594e-08
1.06969143791e-11 -5.82513572933e-08
1.10534781917e-11 -2.20720407507e-08
1.14100420044e-11 8.15346268279e-09
1.1766605817e-11 2.60942477626e-08
1.21231696296e-11 3.11455397028e-08
1.24797334423e-11 2.68102251511e-08
1.28362972549e-11 1.81415837908e-08
1.31928610676e-11 9.37997973738e-09
1.35494248802e-11 2.90844097417e-09
1.39059886928e-11 -6.75092141911e-10
1.42625525055e-11 -1.94402943743e-09
1.46191163181e-11 -1.87913069827e-09
1.49756801307e-11 -1.30827589734e-09
1.53322439434e-11 -7.3439006959e-10
1.5688807756e-11 -3.2375816264e-10
1.60453715686e-11 -1.0141186892e-10
1.64019353813e-11 -9.37182216597e-12
1.67584991939e-11 2.07793618466e-11
1.71150630066e-11 -2.38626463424e-12
1.74716268192e-11 -2.14359959904e-11
1.78281906318e-11 -2.07448042034e-11
1.81847544445e-11 -1.48061943565e-11
1.85413182571e-11 -1.25404509368e-11
1.88978820697e-11 -1.37121928937e-11
1.92544458824e-11 -1.0409491357e-11
1.9611009695e-11 -1.39568352535e-11
1.99675735077e-11 -1.20760956031e-11
2.03241373203e-11 -1.13869447183e-11
2.06807011329e-11 -6.88803923838e-12
2.10372649456e-11 -1.47338859863e-11
2.13938287582e-11 -5.15218439743e-12
2.17503925708e-11 -1.51143296013e-11
2.21069563835e-11 -4.59624609965e-12
2.24635201961e-11 -2.82633776951e-12
2.28200840087e-11 -1.33407331406e-11
2.31766478214e-11 -1.79189109297e-11
2.3533211634e-11 -1.13202525695e-11
2.38897754467e-11 -3.86830259665e-12
2.42463392593e-11 -5.37423282417e-12
2.46029030719e-11 -8.8231735286e-12
2.49594668846e-11 -1.11702183961e-11
2.53160306972e-11 -1.13153877002e-11
2.56725945098e-11 -5.44287745842e-12

View File

@ -1,8 +1,77 @@
% time-domain voltage integration by openEMS v0.0.35-108-gc651cce @Sat Jun 21 22:34:37 2025
% start-coordinates: (-4.4935e-05,-4.26269e-05,0.000155995) m -> [87,72,41]
% stop-coordinates: (-4.8335e-05,-4.26269e-05,0.000155995) m -> [77,72,41]
% time-domain voltage integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:43:31 2026
% start-coordinates: (-4.4935e-05,-4.3075e-05,0.00015575) m -> [49,45,21]
% stop-coordinates: (-4.8335e-05,-4.3075e-05,0.00015575) m -> [45,45,21]
% t/s voltage
0 -0
3.56780456686e-13 -4.17605613284e-10
7.13560913371e-13 -1.08776993663e-09
1.07034137006e-12 -1.17565671781e-09
3.56563812637e-13 -3.14796338302e-10
7.13127625273e-13 -8.15321740677e-10
1.06969143791e-12 -8.94016138897e-10
1.42625525055e-12 1.63221804128e-10
1.78281906318e-12 4.03642080871e-09
2.13938287582e-12 1.34395650164e-08
2.49594668846e-12 3.1303229342e-08
2.85251050109e-12 5.87327866342e-08
3.20907431373e-12 9.1034314309e-08
3.56563812637e-12 1.12660528018e-07
3.922201939e-12 9.36611144198e-08
4.27876575164e-12 -8.04635957863e-09
4.63532956428e-12 -2.34170162372e-07
4.99189337691e-12 -6.02201112088e-07
5.34845718955e-12 -1.07616386913e-06
5.70502100219e-12 -1.54636364869e-06
6.06158481482e-12 -1.83560351275e-06
6.41814862746e-12 -1.74387417928e-06
6.7747124401e-12 -1.12616940839e-06
7.13127625273e-12 2.4611220284e-08
7.48784006537e-12 1.53054129726e-06
7.84440387801e-12 3.0515388687e-06
8.20096769064e-12 4.18400134095e-06
8.55753150328e-12 4.60187055751e-06
8.91409531592e-12 4.18021539872e-06
9.27065912855e-12 3.04434294662e-06
9.62722294119e-12 1.52091709538e-06
9.98378675383e-12 1.43012881537e-08
1.03403505665e-11 -1.1349036555e-06
1.06969143791e-11 -1.748879356e-06
1.10534781917e-11 -1.83576162271e-06
1.14100420044e-11 -1.54195153357e-06
1.1766605817e-11 -1.06866427529e-06
1.21231696296e-11 -5.93719114761e-07
1.24797334423e-11 -2.26650783475e-07
1.28362972549e-11 -2.61750998654e-09
1.31928610676e-11 9.67273292574e-08
1.35494248802e-11 1.13766931875e-07
1.39059886928e-11 9.08963997404e-08
1.42625525055e-11 5.80507490966e-08
1.46191163181e-11 3.05783292021e-08
1.49756801307e-11 1.29275861127e-08
1.53322439434e-11 3.77665260176e-09
1.5688807756e-11 1.08402052742e-10
1.60453715686e-11 -8.27663340641e-10
1.64019353813e-11 -7.03241374855e-10
1.67584991939e-11 -3.99253588523e-10
1.71150630066e-11 -3.64244280571e-10
1.74716268192e-11 -3.70218505158e-10
1.78281906318e-11 -3.81824998702e-10
1.81847544445e-11 -3.91336671401e-10
1.85413182571e-11 -3.86141812969e-10
1.88978820697e-11 -3.85943266928e-10
1.92544458824e-11 -3.89827038705e-10
1.9611009695e-11 -4.02915992237e-10
1.99675735077e-11 -4.0239252902e-10
2.03241373203e-11 -4.05374012136e-10
2.06807011329e-11 -4.07814490511e-10
2.10372649456e-11 -4.11160772096e-10
2.13938287582e-11 -4.17504648909e-10
2.17503925708e-11 -4.27635836464e-10
2.21069563835e-11 -4.27076110587e-10
2.24635201961e-11 -4.25830974649e-10
2.28200840087e-11 -4.34757736756e-10
2.31766478214e-11 -4.35010950872e-10
2.3533211634e-11 -4.40244660171e-10
2.38897754467e-11 -4.43926513605e-10
2.42463392593e-11 -4.40083768039e-10
2.46029030719e-11 -4.41835040776e-10
2.49594668846e-11 -4.50448983669e-10
2.53160306972e-11 -4.52180431987e-10
2.56725945098e-11 -4.54934721839e-10

View File

@ -1,8 +1,77 @@
% time-domain voltage integration by openEMS v0.0.35-108-gc651cce @Sat Jun 21 22:34:37 2025
% start-coordinates: (-3.993e-05,-4.26269e-05,0.000155995) m -> [97,72,41]
% stop-coordinates: (-3.6065e-05,-4.26269e-05,0.000155995) m -> [107,72,41]
% time-domain voltage integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:43:31 2026
% start-coordinates: (-3.993e-05,-4.3075e-05,0.00015575) m -> [57,45,21]
% stop-coordinates: (-3.6065e-05,-4.3075e-05,0.00015575) m -> [63,45,21]
% t/s voltage
0 -0
3.56780456686e-13 3.15549134131e-11
7.13560913371e-13 -3.44705401376e-11
1.07034137006e-12 -1.32001081073e-11
3.56563812637e-13 2.85446338875e-11
7.13127625273e-13 -2.68338790858e-11
1.06969143791e-12 -7.66037352908e-12
1.42625525055e-12 9.58867739983e-12
1.78281906318e-12 4.3944882672e-11
2.13938287582e-12 1.37681223193e-10
2.49594668846e-12 3.11155406996e-10
2.85251050109e-12 5.30535025633e-10
3.20907431373e-12 6.93611727082e-10
3.56563812637e-12 6.04479338112e-10
3.922201939e-12 -9.29809944317e-11
4.27876575164e-12 -1.67135998097e-09
4.63532956428e-12 -4.21551915597e-09
4.99189337691e-12 -7.24079163295e-09
5.34845718955e-12 -9.5749707052e-09
5.70502100219e-12 -9.46326167428e-09
6.06158481482e-12 -5.30993204961e-09
6.41814862746e-12 3.41466671605e-09
6.7747124401e-12 1.529348026e-08
7.13127625273e-12 2.67637609852e-08
7.48784006537e-12 3.32156318006e-08
7.84440387801e-12 3.08535677007e-08
8.20096769064e-12 1.87689679354e-08
8.55753150328e-12 -1.4146642191e-10
8.91409531592e-12 -2.00111012205e-08
9.27065912855e-12 -3.43385289092e-08
9.62722294119e-12 -3.88121139672e-08
9.98378675383e-12 -3.28997533661e-08
1.03403505665e-11 -1.98502593252e-08
1.06969143791e-11 -4.88399183596e-09
1.10534781917e-11 7.25960080938e-09
1.14100420044e-11 1.38717259901e-08
1.1766605817e-11 1.48251282361e-08
1.21231696296e-11 1.18656351411e-08
1.24797334423e-11 7.32262950276e-09
1.28362972549e-11 3.11852352275e-09
1.31928610676e-11 2.53969357697e-10
1.35494248802e-11 -1.12257700358e-09
1.39059886928e-11 -1.399320812e-09
1.42625525055e-11 -1.12051757456e-09
1.46191163181e-11 -6.94920614108e-10
1.49756801307e-11 -3.46436629384e-10
1.53322439434e-11 -1.17546280869e-10
1.5688807756e-11 -6.37723062563e-12
1.60453715686e-11 2.6812521604e-11
1.64019353813e-11 3.25795037649e-11
1.67584991939e-11 2.37361471624e-11
1.71150630066e-11 1.11547693283e-12
1.74716268192e-11 8.5063305141e-12
1.78281906318e-11 1.76644649429e-11
1.81847544445e-11 1.16963208866e-11
1.85413182571e-11 9.46707463942e-12
1.88978820697e-11 7.59310810842e-12
1.92544458824e-11 9.05671284496e-12
1.9611009695e-11 1.46896247336e-11
1.99675735077e-11 1.26303910906e-11
2.03241373203e-11 1.52300982156e-11
2.06807011329e-11 9.16735502614e-12
2.10372649456e-11 5.25883628094e-12
2.13938287582e-11 1.41531676786e-11
2.17503925708e-11 1.22913378694e-11
2.21069563835e-11 8.78216862297e-12
2.24635201961e-11 5.85792406336e-12
2.28200840087e-11 4.04782273238e-12
2.31766478214e-11 1.06915917092e-11
2.3533211634e-11 8.6316807109e-12
2.38897754467e-11 9.08277289101e-12
2.42463392593e-11 2.29080400753e-12
2.46029030719e-11 4.31661127741e-12
2.49594668846e-11 7.41785533822e-12
2.53160306972e-11 6.40207225883e-12
2.56725945098e-11 6.89096197638e-12

View File

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<ContinuousStructure CoordSystem="0">
<RectilinearGrid DeltaUnit="1e-06" CoordSystem="0">
<XLines Qty="184">-174.41,-164.736382140038,-155.062764280076,-145.389146420114,-135.715528560152,-126.041910700189,-116.368292840227,-106.694674980265,-99.1872172194175,-93.3608632278889,-88.839172674845,-85.3299994445171,-82.6066160957472,-80.4930650176021,-78.8527898202283,-77.5798124358914,-76.5918858833056,-75.8251802958279,-75.2301588781618,-74.7683773374192,-74.41,-74.11,-73.81,-73.435,-73.06,-72.76,-72.46,-71.96,-71.66,-71.36,-71.0509628757904,-70.649214614318,-70.1269418744038,-69.4479873125154,-68.5653463820604,-67.4179131724689,-65.92625,-64.4345868275311,-63.2871536179396,-62.4045126874847,-61.7255581255962,-61.203285385682,-60.8015371242096,-60.4925,-60.1925,-59.8925,-59.5952475071225,-59.30349002849,-59.008985042735,-58.7144800569801,-58.4199750712251,-58.1254700854701,-57.8309650997151,-57.5364601139601,-57.2419551282051,-56.9474501424501,-56.6529451566952,-56.3584401709402,-56.0639351851852,-55.6681873219373,-55.255,-54.8583742877493,-54.4460398860399,-54.1515349002849,-53.8570299145299,-53.5625249287749,-53.26801994302,-52.973514957265,-52.67900997151,-52.3849376780627,-52.09,-51.79,-51.265,-50.665,-49.765,-49.165,-48.6375,-48.335,-48.0375,-47.7375,-47.33625,-46.935,-46.635,-46.335,-45.935,-45.535,-45.235,-44.935,-44.695,-44.395,-44.095,-43.611875,-43.12875,-42.1625,-41.19625,-40.713125,-40.23,-39.93,-39.63,-39.33,-38.81375,-38.2975,-37.9975,-37.6975,-37.18125,-36.665,-36.365,-36.065,-35.765,-35.24,-34.64,-33.74,-33.14,-32.6125,-32.3125,-32.0140438034188,-31.7211752136752,-31.4267628205128,-31.1323504273504,-30.837938034188,-30.5435256410256,-30.2491132478632,-29.9547008547009,-29.5425053418803,-29.145,-28.7329700854701,-28.3373611111111,-28.0429487179487,-27.7485363247863,-27.4541239316239,-27.1597115384615,-26.8652991452991,-26.5708867521368,-26.2764743589744,-25.982061965812,-25.6876495726496,-25.3932371794872,-25.0988247863248,-24.8072061965812,-24.51,-24.21,-23.91,-23.6008917837444,-23.199051102612,-22.67665821714,-21.9975474660264,-21.1147034895787,-19.9670063201966,-18.475,-16.9829936798034,-15.8352965104213,-14.9524525339736,-14.27334178286,-13.750948897388,-13.3491082162556,-13.04,-12.74,-12.44,-11.94,-11.64,-11.34,-10.59,-10.29,-9.99,-9.6316226625808,-9.16984112183822,-8.5748197041721,-7.80811411669436,-6.82018756410861,-5.54721017977163,-3.90693498239781,-1.79338390425274,0.929999444517197,4.43917267484511,8.96086322788899,14.7872172194176,22.2946749802653,31.9682928402274,41.6419107001895,51.3155285601516,60.9891464201137,70.6627642800758,80.3363821400379,90.01</XLines>
<YLines Qty="143">-163.9,-154.239642358032,-144.579284716064,-134.918927074096,-125.258569432128,-115.59821179016,-105.937854148192,-96.2774965062235,-88.7893246873739,-82.9849104755217,-78.4856514897781,-74.9980762268929,-72.2947019039591,-70.1991965229937,-68.5748773288654,-67.315795453734,-66.3398252293996,-65.58330740669,-64.9968968771397,-64.5423440578343,-64.19,-63.895,-63.595,-63.295,-62.7025,-62.11,-61.5175,-60.925,-60.625,-60.325,-60.025,-59.725,-58.9925,-58.26,-57.5275,-56.795,-56.495,-56.195,-55.895,-55.595,-55.208125,-54.82125,-54.0475,-53.27375,-52.886875,-52.5,-52.2,-51.9,-51.5875480769231,-51.235,-50.915,-50.4052884615385,-50.015,-49.6583653846154,-49.3594230769231,-48.955,-48.6116346153846,-48.3126923076923,-48.055,-47.5657692307692,-47.2668269230769,-46.995,-46.5190384615385,-46.095,-45.7721153846154,-45.4731730769231,-45.035,-44.7253846153846,-44.4269711538462,-44.1275,-43.78,-43.075,-42.626875,-42.175,-41.4275,-41.1275,-40.7580430911681,-40.215,-39.9533262108262,-39.6597827635328,-39.155,-38.6337820512821,-38.255,-37.8985220797721,-37.6049786324786,-37.195,-36.8725213675214,-36.5789779202279,-36.295,-35.843717948718,-35.5501745014245,-35.235,-34.8177172364672,-34.335,-34.015,-33.6503365384615,-33.3525,-33.03875,-32.73875,-32.35453125,-31.9703125,-31.201875,-30.4334375,-30.04921875,-29.665,-29.365,-29.065,-28.765,-28.465,-27.7325,-27,-26.2675,-25.535,-25.235,-24.935,-24.635,-24.335,-23.74125,-23.1475,-22.55375,-21.96,-21.66,-21.36,-21.0016226625808,-20.5398411218382,-19.9448197041721,-19.1781141166944,-18.1901875641086,-16.9172101797716,-15.2769349823978,-13.1633839042527,-10.4400005554828,-6.93082732515489,-2.409136772111,3.41721721941757,10.9246749802653,20.5982928402274,30.2719107001895,39.9455285601516,49.6191464201137,59.2927642800758,68.9663821400379,78.64</YLines>
<ZLines Qty="113">0,11.3218316189194,22.6436632378389,33.0780198021099,43.512376366381,53.9467329306521,64.3810894949232,74.8154460591942,85.2498026234653,95.6841591877364,106.118515752007,116.552872316279,124.617594089445,130.82122622265,135.5932509405,139.264039185,142.08772245,144.2597865,145.930605,147.21585,148.2045,148.965,149.55,150,150.288461538462,150.576923076923,150.865384615385,151.153846153846,151.442307692308,151.730769230769,152.019230769231,152.307692307692,152.596153846154,152.884615384615,153.173076923077,153.461538461538,153.75,154.27,154.79,155.27,155.75,155.995,156.24,156.51,156.78,157.025,157.27,157.54,157.81,158.055,158.3,158.57,158.84,159.085,159.33,159.613433333333,159.896866666667,160.1803,160.466014285714,160.751728571429,161.037442857143,161.323157142857,161.608871428571,161.894585714286,162.1803,162.4603,162.7403,163.0203,163.3003,163.5803,163.8603,164.1403,164.4203,164.7003,164.9803,165.2803,165.5803,165.8803,166.1803,166.4803,166.7803,167.0803,167.3803,167.6803,167.9803,168.7303,169.1053,169.4803,169.6803,169.8803,170.3303,170.9153,171.6758,172.66445,173.949695,175.6205135,177.79257755,180.616260815,184.2870490595,189.05907377735,195.262705910555,203.327427683721,213.761784247993,224.196140812264,234.630497376535,245.064853940806,255.499210505077,265.933567069348,276.367923633619,286.80228019789,297.236636762161,308.558468381081,319.8803</ZLines>
<XLines Qty="109">-94.41,-89.314071377464,-85.3941262832055,-82.3787839030067,-80.0592897643922,-78.2750635039195,-76.9025817650944,-75.8468265813827,-75.0347072092968,-74.41,-73.91,-72.96,-72.46,-71.96,-71.46,-70.96,-70.33078125,-69.7015625,-68.443125,-65.92625,-63.409375,-62.1509375,-61.52171875,-60.8925,-60.3925,-59.8925,-59.398671875,-58.9171875,-58.42953125,-57.941875,-57.45421875,-56.9665625,-56.47890625,-55.81546875,-55.255,-54.58125,-54.040625,-53.55296875,-53.0653125,-52.58,-52.09,-51.265,-50.665,-49.765,-49.165,-48.335,-47.8375,-46.635,-45.785,-44.935,-44.195,-43.695,-43.023125,-42.35125,-41.679375,-41.0075,-40.5075,-39.93,-39.43,-38.71375,-37.9975,-37.28125,-36.565,-36.065,-35.24,-34.64,-33.74,-33.14,-32.3125,-31.8175,-31.335,-30.8475,-30.36,-29.69796875,-29.145,-28.463125,-27.9225,-27.435,-26.9475,-26.46,-25.9725,-25.485,-25.00375,-24.51,-24.01,-23.51,-22.880625,-22.25125,-20.9925,-18.475,-15.9575,-14.69875,-14.069375,-13.44,-12.94,-12.44,-11.94,-11.44,-10.49,-9.99,-9.36529279070317,-8.55317341861729,-7.49741823490564,-6.1249364960805,-4.34071023560782,-2.02121609699334,0.994126283205492,4.91407137746397,10.01</XLines>
<YLines Qty="91">-83.9,-78.9289216287161,-75.105015189267,-72.163548697383,-69.9008821651646,-68.1603694480735,-66.8215135118495,-65.7916243301388,-64.9994018826691,-64.39,-63.895,-63.395,-62.895,-62.11,-61.325,-60.825,-60.325,-59.825,-59.325,-58.26,-57.195,-56.695,-56.195,-55.695,-55.195,-54.0475,-52.9,-52.4,-51.9,-51.075,-50.44265625,-50.015,-49.47109375,-48.955,-48.49953125,-48.055,-47.52796875,-46.995,-46.5159375,-46.095,-45.58484375,-45.035,-44.6196875,-44.1275,-43.6275,-43.075,-42.175,-41.6275,-41.1275,-40.63671875,-40.215,-39.66921875,-39.155,-38.69703125,-38.255,-37.72484375,-37.195,-36.75265625,-36.295,-35.78046875,-35.235,-34.80828125,-34.175,-33.3525,-32.83875,-32.33875,-31.201875,-30.065,-29.565,-29.065,-28.565,-28.065,-27,-25.935,-25.435,-24.935,-24.435,-23.935,-23.1475,-22.36,-21.86,-21.36,-20.7352927907032,-19.9231734186173,-18.8674182349056,-17.4949364960805,-15.7107102356078,-13.3912160969933,-10.3758737167945,-6.45592862253603,-1.36</YLines>
<ZLines Qty="61">0,9.375,18.75,28.125,37.5,46.875,56.25,65.625,75,84.375,93.75,103.125,112.5,121.875,131.25,140.625,145.3125,150,151.875,153.75,154.75,155.75,156.24,156.78,157.27,157.81,158.3,158.84,159.33,160.1803,160.6803,161.6803,162.1803,163.5803,164.9803,165.4803,166.4803,167.4803,167.9803,168.7303,169.4803,169.8803,171.052175,172.22405,174.5678,179.2553,188.6303,198.0053,207.3803,216.7553,226.1303,235.5053,244.8803,254.2553,263.6303,273.0053,282.3803,291.7553,301.1303,310.5053,319.8803</ZLines>
</RectilinearGrid>
<BackgroundMaterial Epsilon="1" Mue="1" Kappa="0" Sigma="0" />
<ParameterSet />
@ -601,8 +601,8 @@
<EdgeColor R="208" G="208" B="208" a="20" />
<Primitives>
<Box Priority="10">
<P1 X="-1.744100e+02" Y="-1.639000e+02" Z="1.698803e+02" />
<P2 X="9.001000e+01" Y="7.864000e+01" Z="3.198803e+02" />
<P1 X="-9.441000e+01" Y="-8.390000e+01" Z="1.698803e+02" />
<P2 X="1.001000e+01" Y="-1.360000e+00" Z="3.198803e+02" />
</Box>
</Primitives>
<Property Epsilon="1.000000e+00,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="0.000000e+00,0.000000e+00,0.000000e+00" Sigma="0.000000e+00,0.000000e+00,0.000000e+00" Density="0.000000e+00" />
@ -613,8 +613,8 @@
<EdgeColor R="160" G="160" B="240" a="20" />
<Primitives>
<Box Priority="10">
<P1 X="-1.744100e+02" Y="-1.639000e+02" Z="1.694803e+02" />
<P2 X="9.001000e+01" Y="7.864000e+01" Z="1.698803e+02" />
<P1 X="-9.441000e+01" Y="-8.390000e+01" Z="1.694803e+02" />
<P2 X="1.001000e+01" Y="-1.360000e+00" Z="1.698803e+02" />
</Box>
</Primitives>
<Property Epsilon="6.600000e+00,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="0.000000e+00,0.000000e+00,0.000000e+00" Sigma="0.000000e+00,0.000000e+00,0.000000e+00" Density="0.000000e+00" />
@ -625,8 +625,8 @@
<EdgeColor R="255" G="252" B="173" a="20" />
<Primitives>
<Box Priority="10">
<P1 X="-1.744100e+02" Y="-1.639000e+02" Z="1.537500e+02" />
<P2 X="9.001000e+01" Y="7.864000e+01" Z="1.694803e+02" />
<P1 X="-9.441000e+01" Y="-8.390000e+01" Z="1.537500e+02" />
<P2 X="1.001000e+01" Y="-1.360000e+00" Z="1.694803e+02" />
</Box>
</Primitives>
<Property Epsilon="4.100000e+00,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="0.000000e+00,0.000000e+00,0.000000e+00" Sigma="0.000000e+00,0.000000e+00,0.000000e+00" Density="0.000000e+00" />
@ -637,8 +637,8 @@
<EdgeColor R="41" G="79" B="255" a="20" />
<Primitives>
<Box Priority="10">
<P1 X="-1.744100e+02" Y="-1.639000e+02" Z="1.500000e+02" />
<P2 X="9.001000e+01" Y="7.864000e+01" Z="1.537500e+02" />
<P1 X="-9.441000e+01" Y="-8.390000e+01" Z="1.500000e+02" />
<P2 X="1.001000e+01" Y="-1.360000e+00" Z="1.537500e+02" />
</Box>
</Primitives>
<Property Epsilon="1.190000e+01,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="5.000000e+00,0.000000e+00,0.000000e+00" Sigma="0.000000e+00,0.000000e+00,0.000000e+00" Density="0.000000e+00" />
@ -649,14 +649,14 @@
<EdgeColor R="1" G="224" B="255" a="20" />
<Primitives>
<Box Priority="10">
<P1 X="-1.744100e+02" Y="-1.639000e+02" Z="0.000000e+00" />
<P2 X="9.001000e+01" Y="7.864000e+01" Z="1.500000e+02" />
<P1 X="-9.441000e+01" Y="-8.390000e+01" Z="0.000000e+00" />
<P2 X="1.001000e+01" Y="-1.360000e+00" Z="1.500000e+02" />
</Box>
</Primitives>
<Property Epsilon="1.190000e+01,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="2.000000e+00,0.000000e+00,0.000000e+00" Sigma="0.000000e+00,0.000000e+00,0.000000e+00" Density="0.000000e+00" />
<Weight Epsilon="1.000000e+00,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="1.000000e+00,1.000000e+00,1.000000e+00" Sigma="1.000000e+00,1.000000e+00,1.000000e+00" Density="1.000000e+00" />
</Material>
<LumpedElement ID="16" Name="port_resist_1" Direction="2" Caps="1" R="5.000000e+01" C="nan" L="nan">
<LumpedElement ID="16" Name="port_resist_1" Direction="2" Caps="1" R="5.000000e+01" C="nan" L="nan" LEtype="0.000000e+00">
<FillColor R="171" G="178" B="205" a="255" />
<EdgeColor R="171" G="178" B="205" a="255" />
<Primitives>
@ -666,7 +666,7 @@
</Box>
</Primitives>
</LumpedElement>
<Excitation ID="17" Name="port_excite_1" Number="0" Frequency="0.000000e+00" Delay="0.000000e+00" Type="0" Excite="0.000000e+00,0.000000e+00,-1.000000e+00" PropDir="0.000000e+00,0.000000e+00,0.000000e+00">
<Excitation ID="17" Name="port_excite_1" Number="0" Enabled="1" Frequency="0.000000e+00" Delay="0.000000e+00" Type="0" Excite="0.000000e+00,0.000000e+00,-1.000000e+00" PropDir="0.000000e+00,0.000000e+00,0.000000e+00">
<FillColor R="198" G="155" B="180" a="255" />
<EdgeColor R="198" G="155" B="180" a="255" />
<Primitives>
@ -697,7 +697,7 @@
</Box>
</Primitives>
</ProbeBox>
<LumpedElement ID="20" Name="port_resist_2" Direction="2" Caps="1" R="5.000000e+01" C="nan" L="nan">
<LumpedElement ID="20" Name="port_resist_2" Direction="2" Caps="1" R="5.000000e+01" C="nan" L="nan" LEtype="0.000000e+00">
<FillColor R="33" G="61" B="220" a="255" />
<EdgeColor R="33" G="61" B="220" a="255" />
<Primitives>
@ -727,7 +727,7 @@
</Box>
</Primitives>
</ProbeBox>
<LumpedElement ID="23" Name="port_resist_3" Direction="0" Caps="1" R="5.000000e+01" C="nan" L="nan">
<LumpedElement ID="23" Name="port_resist_3" Direction="0" Caps="1" R="5.000000e+01" C="nan" L="nan" LEtype="0.000000e+00">
<FillColor R="225" G="252" B="103" a="255" />
<EdgeColor R="225" G="252" B="103" a="255" />
<Primitives>
@ -757,7 +757,7 @@
</Box>
</Primitives>
</ProbeBox>
<LumpedElement ID="26" Name="port_resist_4" Direction="0" Caps="1" R="5.000000e+01" C="nan" L="nan">
<LumpedElement ID="26" Name="port_resist_4" Direction="0" Caps="1" R="5.000000e+01" C="nan" L="nan" LEtype="0.000000e+00">
<FillColor R="107" G="150" B="143" a="255" />
<EdgeColor R="107" G="150" B="143" a="255" />
<Primitives>

View File

@ -0,0 +1 @@
1439df9bf4b7543a52e1345a81ca24d762029191ff59265916a2f95229f5eb24

View File

@ -1,77 +1,74 @@
% time-domain current integration by openEMS v0.0.35-108-gc651cce @Wed Mar 12 09:10:37 2025
% start-coordinates: (-7.276e-05,-4.4427e-05,0.000161037) m -> [25,68,60]
% stop-coordinates: (-7.196e-05,-4.11275e-05,0.000161037) m -> [27,75,60]
% time-domain current integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:44:02 2026
% start-coordinates: (-7.296e-05,-4.46197e-05,0.00016068) m -> [11,42,30]
% stop-coordinates: (-7.196e-05,-4.11275e-05,0.00016068) m -> [13,48,30]
% t/s current
2.44035880086e-16 0
3.57024492566e-13 7.99609537654e-14
7.13804949251e-13 1.08976564751e-12
1.07058540594e-12 7.53384659345e-13
1.42736586262e-12 -8.19982048841e-13
1.78414631931e-12 -4.4348348778e-12
2.14092677599e-12 -1.21233084335e-11
2.49770723268e-12 -2.51270323992e-11
2.85448768937e-12 -4.21024916319e-11
3.21126814605e-12 -5.62730730069e-11
3.56804860274e-12 -5.19022116952e-11
3.92482905942e-12 -5.6242866267e-12
4.28160951611e-12 1.07879254141e-10
4.63838997279e-12 3.00349106697e-10
4.99517042948e-12 5.50052892123e-10
5.35195088616e-12 7.85410514403e-10
5.70873134285e-12 8.8792090347e-10
6.06551179954e-12 7.24618143266e-10
6.42229225622e-12 2.09181616473e-10
6.77907271291e-12 -6.30783703048e-10
7.13585316959e-12 -1.61715985048e-09
7.49263362628e-12 -2.44886511069e-09
7.84941408296e-12 -2.80154432986e-09
8.20619453965e-12 -2.46417886096e-09
8.56297499634e-12 -1.45020728759e-09
8.91975545302e-12 -2.07496728133e-11
9.27653590971e-12 1.40324696307e-09
9.63331636639e-12 2.4037567492e-09
9.99009682308e-12 2.72765232623e-09
1.03468772798e-11 2.37050756802e-09
1.07036577364e-11 1.54995516422e-09
1.10604381931e-11 5.91191373633e-10
1.14172186498e-11 -2.11060419142e-10
1.17739991065e-11 -6.89473977911e-10
1.21307795632e-11 -8.27206636522e-10
1.24875600199e-11 -7.16907866405e-10
1.28443404766e-11 -4.9073428654e-10
1.32011209332e-11 -2.60660409923e-10
1.35579013899e-11 -8.94442575561e-11
1.39146818466e-11 8.00848623528e-12
1.42714623033e-11 4.63788035754e-11
1.462824276e-11 4.93520120604e-11
1.49850232167e-11 3.73044269086e-11
1.53418036734e-11 2.27007249803e-11
1.569858413e-11 1.1064133984e-11
1.60553645867e-11 3.97487338183e-12
1.64121450434e-11 8.82892825689e-13
1.67689255001e-11 4.0288681679e-13
1.71257059568e-11 1.20799019659e-12
1.74824864135e-11 1.62077957392e-12
1.78392668702e-11 1.2194547672e-12
1.81960473268e-11 3.41976962156e-13
1.85528277835e-11 -4.10615633292e-13
1.89096082402e-11 -5.53037216716e-13
1.92663886969e-11 -1.59492685443e-13
1.96231691536e-11 3.69398576398e-13
1.99799496103e-11 6.38496091936e-13
2.0336730067e-11 5.46349044565e-13
2.06935105236e-11 2.02421169019e-13
2.10502909803e-11 -4.81915803921e-14
2.1407071437e-11 -3.75581998228e-14
2.17638518937e-11 1.97750886846e-13
2.21206323504e-11 5.34432903748e-13
2.24774128071e-11 6.54144219261e-13
2.28341932638e-11 5.7155430562e-13
2.31909737204e-11 3.40756773926e-13
2.35477541771e-11 1.70386247429e-13
2.39045346338e-11 1.57022913552e-13
2.42613150905e-11 2.54889018962e-13
2.46180955472e-11 3.56089479734e-13
2.49748760039e-11 3.83954098983e-13
2.53316564606e-11 2.99439211491e-13
2.56884369172e-11 1.78331579104e-13
4.51346598274e-16 0
3.57015159235e-13 5.91366419809e-14
7.13578971872e-13 6.493978532e-13
1.07014278451e-12 5.38677121572e-13
1.42670659714e-12 -7.26999406855e-13
1.78327040978e-12 -3.17224566927e-12
2.13983422242e-12 -9.06118149263e-12
2.49639803505e-12 -1.87150885067e-11
2.85296184769e-12 -3.11919240437e-11
3.20952566033e-12 -4.16316668639e-11
3.56608947296e-12 -3.85797609137e-11
3.9226532856e-12 -4.14484158801e-12
4.27921709824e-12 8.02211005957e-11
4.63578091087e-12 2.2331880789e-10
4.99234472351e-12 4.09618283737e-10
5.34890853615e-12 5.85771597894e-10
5.70547234878e-12 6.64790777982e-10
6.06203616142e-12 5.45881451153e-10
6.41859997406e-12 1.64194824404e-10
6.77516378669e-12 -4.62491656084e-10
7.13172759933e-12 -1.20268950354e-09
7.48829141197e-12 -1.83178039403e-09
7.8448552246e-12 -2.10471728934e-09
8.20141903724e-12 -1.85903548111e-09
8.55798284988e-12 -1.10098796746e-09
8.91454666251e-12 -2.48550763304e-11
9.27111047515e-12 1.05082320623e-09
9.62767428779e-12 1.80787662618e-09
9.98423810042e-12 2.05256855956e-09
1.03408019131e-11 1.78098036319e-09
1.06973657257e-11 1.15922393906e-09
1.10539295383e-11 4.34626501455e-10
1.1410493351e-11 -1.68682262602e-10
1.17670571636e-11 -5.25129939533e-10
1.21236209762e-11 -6.23826990065e-10
1.24801847889e-11 -5.35496647025e-10
1.28367486015e-11 -3.61394747461e-10
1.31933124142e-11 -1.86193907514e-10
1.35498762268e-11 -5.71569111485e-11
1.39064400394e-11 1.40105860941e-11
1.42630038521e-11 3.90347650037e-11
1.46195676647e-11 3.75555246623e-11
1.49761314773e-11 2.60884855385e-11
1.533269529e-11 1.45815946123e-11
1.56892591026e-11 6.42496472691e-12
1.60458229152e-11 1.96739803268e-12
1.64023867279e-11 1.94576871434e-13
1.67589505405e-11 -4.10738744449e-13
1.71155143532e-11 3.30069766007e-14
1.74720781658e-11 4.10158777601e-13
1.78286419784e-11 3.99785781736e-13
1.81852057911e-11 3.20909043696e-13
1.85417696037e-11 2.59845503404e-13
1.88983334163e-11 2.5735582285e-13
1.9254897229e-11 2.01081257764e-13
1.96114610416e-11 2.88847532047e-13
1.99680248543e-11 2.3679452496e-13
2.03245886669e-11 2.41086935571e-13
2.06811524795e-11 1.47097395028e-13
2.10377162922e-11 3.13089371052e-13
2.13942801048e-11 9.18876858825e-14
2.17508439174e-11 2.71732560498e-13
2.21074077301e-11 7.56592732258e-14
2.24639715427e-11 5.03496441588e-14
2.28205353553e-11 2.75769505972e-13
2.3177099168e-11 3.5450041882e-13
2.35336629806e-11 2.40328048261e-13
2.38902267933e-11 7.64712525616e-14
2.42467906059e-11 8.32642535107e-14
2.46033544185e-11 1.54492331471e-13

View File

@ -1,77 +1,74 @@
% time-domain current integration by openEMS v0.0.35-108-gc651cce @Wed Mar 12 09:10:37 2025
% start-coordinates: (-1.274e-05,-4.4427e-05,0.000161037) m -> [156,68,60]
% stop-coordinates: (-1.194e-05,-4.11275e-05,0.000161037) m -> [158,75,60]
% time-domain current integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:44:02 2026
% start-coordinates: (-1.294e-05,-4.46197e-05,0.00016068) m -> [94,42,30]
% stop-coordinates: (-1.194e-05,-4.11275e-05,0.00016068) m -> [96,48,30]
% t/s current
2.44035880086e-16 0
3.57024492566e-13 -2.36987617031e-11
7.13804949251e-13 -2.670395155e-11
1.07058540594e-12 -1.51852575653e-12
1.42736586262e-12 9.72354904927e-11
1.78414631931e-12 3.43768347122e-10
2.14092677599e-12 8.23992041266e-10
2.49770723268e-12 1.57748314411e-09
2.85448768937e-12 2.49059439739e-09
3.21126814605e-12 3.15088244385e-09
3.56804860274e-12 2.73914313453e-09
3.92482905942e-12 7.71967906266e-11
4.28160951611e-12 -6.03648464548e-09
4.63838997279e-12 -1.61590918424e-08
4.99517042948e-12 -2.93650774807e-08
5.35195088616e-12 -4.26320951874e-08
5.70873134285e-12 -5.09748439015e-08
6.06551179954e-12 -4.86888325213e-08
6.42229225622e-12 -3.15688737373e-08
6.77907271291e-12 6.76066869154e-10
7.13585316959e-12 4.30129496465e-08
7.49263362628e-12 8.57099493601e-08
7.84941408296e-12 1.17185145143e-07
8.20619453965e-12 1.28121172338e-07
8.56297499634e-12 1.15076474572e-07
8.91975545302e-12 8.18964380755e-08
9.27653590971e-12 3.82254121689e-08
9.63331636639e-12 -4.18201029362e-09
9.99009682308e-12 -3.56303786475e-08
1.03468772798e-11 -5.13359132981e-08
1.07036577364e-11 -5.19823935008e-08
1.10604381931e-11 -4.21858672439e-08
1.14172186498e-11 -2.79483387544e-08
1.17739991065e-11 -1.43597578273e-08
1.21307795632e-11 -4.35814317967e-09
1.24875600199e-11 1.33145228176e-09
1.28443404766e-11 3.48522899429e-09
1.32011209332e-11 3.46526296546e-09
1.35579013899e-11 2.52274223733e-09
1.39146818466e-11 1.47457801525e-09
1.42714623033e-11 6.89973134183e-10
1.462824276e-11 2.3276486294e-10
1.49850232167e-11 2.50758632608e-11
1.53418036734e-11 -3.87785359379e-11
1.569858413e-11 -3.98239670407e-11
1.60553645867e-11 -2.38722288465e-11
1.64121450434e-11 -1.05395111041e-11
1.67689255001e-11 -9.47988822858e-12
1.71257059568e-11 -1.13442345795e-11
1.74824864135e-11 -1.20766183512e-11
1.78392668702e-11 -1.18274131808e-11
1.81960473268e-11 -1.10624530369e-11
1.85528277835e-11 -1.04364242942e-11
1.89096082402e-11 -1.03895607395e-11
1.92663886969e-11 -1.08782722413e-11
1.96231691536e-11 -1.15345424184e-11
1.99799496103e-11 -1.19148978878e-11
2.0336730067e-11 -1.1912258506e-11
2.06935105236e-11 -1.16617384152e-11
2.10502909803e-11 -1.15247819968e-11
2.1407071437e-11 -1.16242198159e-11
2.17638518937e-11 -1.19696709142e-11
2.21206323504e-11 -1.23699704993e-11
2.24774128071e-11 -1.26197923639e-11
2.28341932638e-11 -1.26133435294e-11
2.31909737204e-11 -1.24734701734e-11
2.35477541771e-11 -1.23783578873e-11
2.39045346338e-11 -1.24356514669e-11
2.42613150905e-11 -1.26259775204e-11
2.46180955472e-11 -1.27934017546e-11
2.49748760039e-11 -1.2892022519e-11
2.53316564606e-11 -1.28848529068e-11
2.56884369172e-11 -1.28031847277e-11
4.51346598274e-16 0
3.57015159235e-13 -1.80124803961e-11
7.13578971872e-13 -2.02022565343e-11
1.07014278451e-12 -9.21148465664e-13
1.42670659714e-12 7.35228197768e-11
1.78327040978e-12 2.5977808793e-10
2.13983422242e-12 6.22593587796e-10
2.49639803505e-12 1.1912796305e-09
2.85296184769e-12 1.88035453874e-09
3.20952566033e-12 2.37801511815e-09
3.56608947296e-12 2.0670996026e-09
3.9226532856e-12 5.86193177332e-11
4.27921709824e-12 -4.55329862703e-09
4.63578091087e-12 -1.21884191628e-08
4.99234472351e-12 -2.21482743257e-08
5.34890853615e-12 -3.21534194825e-08
5.70547234878e-12 -3.84412963683e-08
6.06203616142e-12 -3.67076182783e-08
6.41859997406e-12 -2.37775843459e-08
6.77516378669e-12 5.68556646208e-10
7.13172759933e-12 3.2528944871e-08
7.48829141197e-12 6.4750665274e-08
7.8448552246e-12 8.84802489054e-08
8.20141903724e-12 9.66740856256e-08
8.55798284988e-12 8.67341114485e-08
8.91454666251e-12 6.15790369807e-08
9.27111047515e-12 2.85190928651e-08
9.62767428779e-12 -3.53930196262e-09
9.98423810042e-12 -2.7256186641e-08
1.03408019131e-11 -3.90215220136e-08
1.06973657257e-11 -3.93768218032e-08
1.10539295383e-11 -3.18439781211e-08
1.1410493351e-11 -2.09879758017e-08
1.17670571636e-11 -1.06712780834e-08
1.21236209762e-11 -3.11286973975e-09
1.24801847889e-11 1.15335407891e-09
1.28367486015e-11 2.73257083627e-09
1.31933124142e-11 2.67062660875e-09
1.35498762268e-11 1.92324134396e-09
1.39064400394e-11 1.11129305758e-09
1.42630038521e-11 5.11478692733e-10
1.46195676647e-11 1.67073854751e-10
1.49761314773e-11 1.34672255986e-11
1.533269529e-11 -3.18443570124e-11
1.56892591026e-11 -3.1401839462e-11
1.60458229152e-11 -1.86806403679e-11
1.64023867279e-11 -8.14568898444e-12
1.67589505405e-11 -6.95980599541e-12
1.71155143532e-11 -7.88333287538e-12
1.74720781658e-11 -8.38872374342e-12
1.78286419784e-11 -8.66893969803e-12
1.81852057911e-11 -8.46341399741e-12
1.85417696037e-11 -8.29822582177e-12
1.88983334163e-11 -8.44554287616e-12
1.9254897229e-11 -8.69297082234e-12
1.96114610416e-11 -8.71798206542e-12
1.99680248543e-11 -8.77732435345e-12
2.03245886669e-11 -8.79919834912e-12
2.06811524795e-11 -8.88781756525e-12
2.10377162922e-11 -8.99240144153e-12
2.13942801048e-11 -9.1632630303e-12
2.17508439174e-11 -9.22485525467e-12
2.21074077301e-11 -8.9824753538e-12
2.24639715427e-11 -9.17316309718e-12
2.28205353553e-11 -9.22910706191e-12
2.3177099168e-11 -9.35215880432e-12
2.35336629806e-11 -9.34971631367e-12
2.38902267933e-11 -9.43502914685e-12
2.42467906059e-11 -9.44499947003e-12
2.46033544185e-11 -9.57648543798e-12

View File

@ -1,77 +1,74 @@
% time-domain current integration by openEMS v0.0.35-108-gc651cce @Wed Mar 12 09:10:37 2025
% start-coordinates: (-4.6935e-05,-5.22e-05,0.00015527) m -> [81,46,39]
% stop-coordinates: (-4.6935e-05,-3.33525e-05,0.00015624) m -> [81,96,42]
% time-domain current integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:44:02 2026
% start-coordinates: (-4.78375e-05,-5.24e-05,0.00015475) m -> [46,27,20]
% stop-coordinates: (-4.78375e-05,-3.33525e-05,0.00015624) m -> [46,63,22]
% t/s current
2.44035880086e-16 -0
3.57024492566e-13 -2.31899162416e-13
7.13804949251e-13 5.60546726223e-13
1.07058540594e-12 1.57017641619e-13
1.42736586262e-12 -5.92051635582e-13
1.78414631931e-12 -2.20412512027e-12
2.14092677599e-12 -5.64522213697e-12
2.49770723268e-12 -1.10020308836e-11
2.85448768937e-12 -1.72783350127e-11
3.21126814605e-12 -2.04225490685e-11
3.56804860274e-12 -1.33869911684e-11
3.92482905942e-12 1.35364870354e-11
4.28160951611e-12 6.81032244487e-11
4.63838997279e-12 1.48851472814e-10
4.99517042948e-12 2.37592945318e-10
5.35195088616e-12 2.95564073216e-10
5.70873134285e-12 2.71608902036e-10
6.06551179954e-12 1.2288742246e-10
6.42229225622e-12 -1.56802265616e-10
6.77907271291e-12 -5.15028242276e-10
7.13585316959e-12 -8.42047598315e-10
7.49263362628e-12 -1.00443187101e-09
7.84941408296e-12 -9.0131901942e-10
8.20619453965e-12 -5.18907250502e-10
8.56297499634e-12 4.81905904071e-11
8.91975545302e-12 6.25693719059e-10
9.27653590971e-12 1.02913888522e-09
9.63331636639e-12 1.14023468445e-09
9.99009682308e-12 9.52823042688e-10
1.03468772798e-11 5.65302415989e-10
1.07036577364e-11 1.29204147381e-10
1.10604381931e-11 -2.18353349291e-10
1.14172186498e-11 -4.03040073538e-10
1.17739991065e-11 -4.24673407551e-10
1.21307795632e-11 -3.35418554043e-10
1.24875600199e-11 -2.03836142409e-10
1.28443404766e-11 -8.43966979636e-11
1.32011209332e-11 -4.1453359842e-12
1.35579013899e-11 3.43691360094e-11
1.39146818466e-11 4.248335711e-11
1.42714623033e-11 3.45000278346e-11
1.462824276e-11 2.15939089526e-11
1.49850232167e-11 1.00841227729e-11
1.53418036734e-11 2.48425477238e-12
1.569858413e-11 -1.10841576802e-12
1.60553645867e-11 -1.80688894836e-12
1.64121450434e-11 -1.10740821894e-12
1.67689255001e-11 -3.29961860786e-13
1.71257059568e-11 1.53267914853e-13
1.74824864135e-11 -2.99257634732e-13
1.78392668702e-11 -8.79863293769e-13
1.81960473268e-11 -1.02786507604e-12
1.85528277835e-11 -7.34555049165e-13
1.89096082402e-11 -2.11480410007e-13
1.92663886969e-11 1.59156487902e-13
1.96231691536e-11 1.81399220731e-13
1.99799496103e-11 -6.274689969e-14
2.0336730067e-11 -3.20219491114e-13
2.06935105236e-11 -3.93859857922e-13
2.10502909803e-11 -2.78264553327e-13
2.1407071437e-11 -5.09350591218e-14
2.17638518937e-11 1.00054946967e-13
2.21206323504e-11 6.59796110976e-14
2.24774128071e-11 -6.98207767644e-14
2.28341932638e-11 -2.3160434074e-13
2.31909737204e-11 -2.67339319085e-13
2.35477541771e-11 -1.82654076326e-13
2.39045346338e-11 -8.39149171157e-14
2.42613150905e-11 -1.93385346799e-14
2.46180955472e-11 -4.26770706448e-14
2.49748760039e-11 -1.17629322081e-13
2.53316564606e-11 -1.9035651961e-13
2.56884369172e-11 -2.19289864045e-13
4.51346598274e-16 -0
3.57015159235e-13 -1.16049991882e-13
7.13578971872e-13 5.24224001881e-13
1.07014278451e-12 -4.06823283828e-14
1.42670659714e-12 -5.48561792778e-13
1.78327040978e-12 -1.68597481896e-12
2.13983422242e-12 -4.16465950268e-12
2.49639803505e-12 -8.51335495156e-12
2.85296184769e-12 -1.34192431472e-11
3.20952566033e-12 -1.62629753414e-11
3.56608947296e-12 -1.14837930831e-11
3.9226532856e-12 8.94183338485e-12
4.27921709824e-12 5.10557152111e-11
4.63578091087e-12 1.14516340854e-10
4.99234472351e-12 1.85127260743e-10
5.34890853615e-12 2.33444680253e-10
5.70547234878e-12 2.18354834214e-10
6.06203616142e-12 1.0479604684e-10
6.41859997406e-12 -1.13329651219e-10
6.77516378669e-12 -3.96870730723e-10
7.13172759933e-12 -6.58972543199e-10
7.48829141197e-12 -7.9318085433e-10
7.8448552246e-12 -7.17779169435e-10
8.20141903724e-12 -4.19790896489e-10
8.55798284988e-12 2.63766508635e-11
8.91454666251e-12 4.82950901493e-10
9.27111047515e-12 8.03317190545e-10
9.62767428779e-12 8.94440743693e-10
9.98423810042e-12 7.50710105191e-10
1.03408019131e-11 4.49806192293e-10
1.06973657257e-11 1.1053312432e-10
1.10539295383e-11 -1.61518104447e-10
1.1410493351e-11 -3.08041953057e-10
1.17670571636e-11 -3.28303523256e-10
1.21236209762e-11 -2.62229404857e-10
1.24801847889e-11 -1.61827717893e-10
1.28367486015e-11 -6.96311758253e-11
1.31933124142e-11 -6.96215307627e-12
1.35498762268e-11 2.31900540437e-11
1.39064400394e-11 2.94250943056e-11
1.42630038521e-11 2.36508104767e-11
1.46195676647e-11 1.46763746989e-11
1.49761314773e-11 7.33338390013e-12
1.533269529e-11 2.55935940843e-12
1.56892591026e-11 2.21588264231e-13
1.60458229152e-11 -5.41724217568e-13
1.64023867279e-11 -5.95070759161e-13
1.67589505405e-11 -3.78513193011e-13
1.71155143532e-11 3.420061543e-14
1.74720781658e-11 -1.46414889761e-13
1.78286419784e-11 -2.98293074269e-13
1.81852057911e-11 -2.09552210653e-13
1.85417696037e-11 -1.35892382416e-13
1.88983334163e-11 -9.68792103831e-14
1.9254897229e-11 -1.81116515015e-13
1.96114610416e-11 -2.24270038304e-13
1.99680248543e-11 -2.25493289405e-13
2.03245886669e-11 -2.13412891959e-13
2.06811524795e-11 -1.71318959453e-13
2.10377162922e-11 -4.42334428634e-14
2.13942801048e-11 -2.63409736731e-13
2.17508439174e-11 -1.76476400767e-13
2.21074077301e-11 -8.60586016511e-14
2.24639715427e-11 -1.0086994174e-13
2.28205353553e-11 -2.54886715033e-14
2.3177099168e-11 -1.75360810942e-13
2.35336629806e-11 -1.7480114578e-13
2.38902267933e-11 -1.61491859382e-13
2.42467906059e-11 -1.63614781445e-14
2.46033544185e-11 -7.88030665028e-14

View File

@ -1,77 +1,74 @@
% time-domain current integration by openEMS v0.0.35-108-gc651cce @Wed Mar 12 09:10:37 2025
% start-coordinates: (-3.82975e-05,-5.22e-05,0.00015527) m -> [101,46,39]
% stop-coordinates: (-3.82975e-05,-3.33525e-05,0.00015624) m -> [101,96,42]
% time-domain current integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:44:02 2026
% start-coordinates: (-3.87138e-05,-5.24e-05,0.00015475) m -> [59,27,20]
% stop-coordinates: (-3.87138e-05,-3.33525e-05,0.00015624) m -> [59,63,22]
% t/s current
2.44035880086e-16 0
3.57024492566e-13 9.02123514779e-12
7.13804949251e-13 2.20618905089e-11
1.07058540594e-12 2.31413603557e-11
1.42736586262e-12 -6.75377765866e-12
1.78414631931e-12 -1.15029270831e-10
2.14092677599e-12 -3.73415243171e-10
2.49770723268e-12 -8.60759741261e-10
2.85448768937e-12 -1.60193225351e-09
3.21126814605e-12 -2.46165288154e-09
3.56804860274e-12 -3.00906988215e-09
3.92482905942e-12 -2.42729147892e-09
4.28160951611e-12 4.16054718455e-10
4.63838997279e-12 6.619623516e-09
4.99517042948e-12 1.65994702428e-08
5.35195088616e-12 2.93109838623e-08
5.70873134285e-12 4.17277803422e-08
6.06551179954e-12 4.90557638955e-08
6.42229225622e-12 4.59805598041e-08
6.77907271291e-12 2.87696906298e-08
7.13585316959e-12 -2.53323939603e-09
7.49263362628e-12 -4.29267643653e-08
7.84941408296e-12 -8.31750526231e-08
8.20619453965e-12 -1.12530308627e-07
8.56297499634e-12 -1.22514563827e-07
8.91975545302e-12 -1.10143645315e-07
9.27653590971e-12 -7.90998200273e-08
9.63331636639e-12 -3.82927680675e-08
9.99009682308e-12 1.50670687038e-09
1.03468772798e-11 3.14121209044e-08
1.07036577364e-11 4.69625049959e-08
1.10604381931e-11 4.86198246108e-08
1.14172186498e-11 4.04209856697e-08
1.17739991065e-11 2.77330833853e-08
1.21307795632e-11 1.52082844096e-08
1.24875600199e-11 5.64752333787e-09
1.28443404766e-11 -1.10307707413e-10
1.32011209332e-11 -2.60865484769e-09
1.35579013899e-11 -2.9870985685e-09
1.39146818466e-11 -2.35816233207e-09
1.42714623033e-11 -1.49352052947e-09
1.462824276e-11 -7.80589259897e-10
1.49850232167e-11 -3.26382393334e-10
1.53418036734e-11 -9.31145369143e-11
1.569858413e-11 -3.74488200866e-13
1.60553645867e-11 2.18151920139e-11
1.64121450434e-11 1.75091555837e-11
1.67689255001e-11 9.79536243784e-12
1.71257059568e-11 9.07342777301e-12
1.74824864135e-11 9.71909185077e-12
1.78392668702e-11 1.04663690909e-11
1.81960473268e-11 1.0766794574e-11
1.85528277835e-11 1.05877953974e-11
1.89096082402e-11 1.02021620318e-11
1.92663886969e-11 9.98603803815e-12
1.96231691536e-11 1.00986215917e-11
1.99799496103e-11 1.04925946404e-11
2.0336730067e-11 1.08707695623e-11
2.06935105236e-11 1.10986671242e-11
2.10502909803e-11 1.10612803639e-11
2.1407071437e-11 1.09375772328e-11
2.17638518937e-11 1.08924622794e-11
2.21206323504e-11 1.10300518719e-11
2.24774128071e-11 1.12785744286e-11
2.28341932638e-11 1.15103777204e-11
2.31909737204e-11 1.16507203191e-11
2.35477541771e-11 1.16533735786e-11
2.39045346338e-11 1.16064970135e-11
2.42613150905e-11 1.16251210047e-11
2.46180955472e-11 1.1699454773e-11
2.49748760039e-11 1.18684888306e-11
2.53316564606e-11 1.20090569433e-11
2.56884369172e-11 1.20896574002e-11
4.51346598274e-16 0
3.57015159235e-13 6.88684526073e-12
7.13578971872e-13 1.66064245688e-11
1.07014278451e-12 1.72450838332e-11
1.42670659714e-12 -5.41436817256e-12
1.78327040978e-12 -8.68496247142e-11
2.13983422242e-12 -2.8159405363e-10
2.49639803505e-12 -6.47909836893e-10
2.85296184769e-12 -1.20444088036e-09
3.20952566033e-12 -1.84916237878e-09
3.56608947296e-12 -2.25825580458e-09
3.9226532856e-12 -1.81894177498e-09
4.27921709824e-12 3.16978970849e-10
4.63578091087e-12 4.97247443221e-09
4.99234472351e-12 1.24586660988e-08
5.34890853615e-12 2.19917648536e-08
5.70547234878e-12 3.13053263312e-08
6.06203616142e-12 3.68088279856e-08
6.41859997406e-12 3.45189441475e-08
6.77516378669e-12 2.1634498637e-08
7.13172759933e-12 -1.82098103263e-09
7.48829141197e-12 -3.21114725921e-08
7.8448552246e-12 -6.23236928732e-08
8.20141903724e-12 -8.43992822297e-08
8.55798284988e-12 -9.19664628896e-08
8.91454666251e-12 -8.27609838439e-08
9.27111047515e-12 -5.95169815654e-08
9.62767428779e-12 -2.89011623522e-08
9.98423810042e-12 1.00520236579e-09
1.03408019131e-11 2.35162573858e-08
1.06973657257e-11 3.52580897811e-08
1.10539295383e-11 3.65545069769e-08
1.1410493351e-11 3.0422675934e-08
1.17670571636e-11 2.08925641232e-08
1.21236209762e-11 1.14662102035e-08
1.24801847889e-11 4.25956780958e-09
1.28367486015e-11 -8.7148392669e-11
1.31933124142e-11 -1.97619409725e-09
1.35498762268e-11 -2.26304908146e-09
1.39064400394e-11 -1.78664782968e-09
1.42630038521e-11 -1.13110631972e-09
1.46195676647e-11 -5.90701432213e-10
1.49761314773e-11 -2.47045855994e-10
1.533269529e-11 -7.05859815042e-11
1.56892591026e-11 -6.28483810133e-13
1.60458229152e-11 1.65181809203e-11
1.64023867279e-11 1.36206514817e-11
1.67589505405e-11 7.82399318944e-12
1.71155143532e-11 7.24316136583e-12
1.74720781658e-11 7.36426024328e-12
1.78286419784e-11 7.59320904764e-12
1.81852057911e-11 7.7623229025e-12
1.85417696037e-11 7.63019768896e-12
1.88983334163e-11 7.68052114963e-12
1.9254897229e-11 7.73241019825e-12
1.96114610416e-11 8.03061263321e-12
1.99680248543e-11 7.98138291569e-12
2.03245886669e-11 8.0929889526e-12
2.06811524795e-11 8.07800180913e-12
2.10377162922e-11 8.16011667959e-12
2.13942801048e-11 8.30324871359e-12
2.17508439174e-11 8.4616732024e-12
2.21074077301e-11 8.44143158152e-12
2.24639715427e-11 8.41471944207e-12
2.28205353553e-11 8.61778270272e-12
2.3177099168e-11 8.63499723114e-12
2.35336629806e-11 8.74878034601e-12
2.38902267933e-11 8.81378477147e-12
2.42467906059e-11 8.76383427634e-12
2.46033544185e-11 8.77153731593e-12

View File

@ -1,77 +1,74 @@
% time-domain voltage integration by openEMS v0.0.35-108-gc651cce @Wed Mar 12 09:10:37 2025
% start-coordinates: (-7.246e-05,-4.26269e-05,0.00015727) m -> [26,72,46]
% stop-coordinates: (-7.246e-05,-4.26269e-05,0.00016498) m -> [26,72,74]
% time-domain voltage integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:44:02 2026
% start-coordinates: (-7.246e-05,-4.3075e-05,0.00015727) m -> [12,45,24]
% stop-coordinates: (-7.246e-05,-4.3075e-05,0.00016498) m -> [12,45,34]
% t/s voltage
0 -0
3.56780456686e-13 -3.74079399049e-12
7.13560913371e-13 -4.88151080972e-11
1.07034137006e-12 -3.83217892098e-11
1.42712182674e-12 3.53943382849e-11
1.78390228343e-12 2.13624656159e-10
2.14068274011e-12 5.94450721286e-10
2.4974631968e-12 1.23912366826e-09
2.85424365349e-12 2.08833673271e-09
3.21102411017e-12 2.8021683654e-09
3.56780456686e-12 2.6090081276e-09
3.92458502354e-12 3.45487236909e-10
4.28136548023e-12 -5.25223084469e-09
4.63814593691e-12 -1.47993129973e-08
4.9949263936e-12 -2.72455403239e-08
5.35170685028e-12 -3.90636065717e-08
5.70848730697e-12 -4.43630741032e-08
6.06526776366e-12 -3.65019832138e-08
6.42204822034e-12 -1.10863498104e-08
6.77882867703e-12 3.06316972898e-08
7.13560913371e-12 7.98959824966e-08
7.4923895904e-12 1.21746882353e-07
7.84917004708e-12 1.39942243127e-07
8.20595050377e-12 1.2377141001e-07
8.56273096046e-12 7.36703549276e-08
8.91951141714e-12 2.46920950353e-09
9.27629187383e-12 -6.88873069699e-08
9.63307233051e-12 -1.19434966361e-07
9.9898527872e-12 -1.36311688159e-07
1.03466332439e-11 -1.19051980718e-07
1.07034137006e-11 -7.83579552355e-08
1.10601941573e-11 -3.04376880367e-08
1.14169746139e-11 9.90147552837e-09
1.17737550706e-11 3.41497498058e-08
1.21305355273e-11 4.13328636872e-08
1.2487315984e-11 3.6003270365e-08
1.28440964407e-11 2.47565353773e-08
1.32008768974e-11 1.3227342166e-08
1.35576573541e-11 4.60273037739e-09
1.39144378107e-11 -3.36451098752e-10
1.42712182674e-11 -2.29803789886e-09
1.46279987241e-11 -2.47174924278e-09
1.49847791808e-11 -1.87834083704e-09
1.53415596375e-11 -1.14824627237e-09
1.56983400942e-11 -5.62159676448e-10
1.60551205509e-11 -2.03286485735e-10
1.64119010075e-11 -4.5375751225e-11
1.67686814642e-11 -1.95837769558e-11
1.71254619209e-11 -5.97445899177e-11
1.74822423776e-11 -8.07202061269e-11
1.78390228343e-11 -6.1788795868e-11
1.8195803291e-11 -1.74624702177e-11
1.85525837477e-11 1.99949165298e-11
1.89093642043e-11 2.8046215632e-11
1.9266144661e-11 8.68593402498e-12
1.96229251177e-11 -1.7584899628e-11
1.99797055744e-11 -3.21341833351e-11
2.03364860311e-11 -2.74256869927e-11
2.06932664878e-11 -9.91262462196e-12
2.10500469445e-11 2.63656753392e-12
2.14068274011e-11 1.79587284951e-12
2.17636078578e-11 -1.04187378939e-11
2.21203883145e-11 -2.63399191781e-11
2.24771687712e-11 -3.31846685547e-11
2.28339492279e-11 -2.91665956794e-11
2.31907296846e-11 -1.74615328165e-11
2.35475101413e-11 -8.88706399053e-12
2.39042905979e-11 -7.90183061128e-12
2.42610710546e-11 -1.24836749282e-11
2.46178515113e-11 -1.83816439175e-11
2.4974631968e-11 -1.94590920525e-11
2.53314124247e-11 -1.54175308045e-11
2.56881928814e-11 -8.4916890956e-12
3.56563812637e-13 -2.79699519974e-12
7.13127625273e-13 -2.75850108814e-11
1.06969143791e-12 -3.04226708929e-11
1.42625525055e-12 3.49877826364e-11
1.78281906318e-12 1.56712275101e-10
2.13938287582e-12 4.44254284401e-10
2.49594668846e-12 9.2430753329e-10
2.85251050109e-12 1.54814615294e-09
3.20907431373e-12 2.07700283361e-09
3.56563812637e-12 1.93781105051e-09
3.922201939e-12 2.50678176134e-10
4.27876575164e-12 -3.92044241515e-09
4.63532956428e-12 -1.10232969974e-08
4.99189337691e-12 -2.03070412708e-08
5.34845718955e-12 -2.91466124569e-08
5.70502100219e-12 -3.32073408771e-08
6.06158481482e-12 -2.74636113851e-08
6.41814862746e-12 -8.62247001576e-09
6.7747124401e-12 2.25153564681e-08
7.13127625273e-12 5.94775602103e-08
7.48784006537e-12 9.11048854135e-08
7.84440387801e-12 1.05124709826e-07
8.20096769064e-12 9.33185702046e-08
8.55753150328e-12 5.58280290885e-08
8.91409531592e-12 2.21596763161e-09
9.27065912855e-12 -5.1670640433e-08
9.62722294119e-12 -8.98762744228e-08
9.98378675383e-12 -1.02579600814e-07
1.03403505665e-11 -8.94084233316e-08
1.06969143791e-11 -5.85460511182e-08
1.10534781917e-11 -2.23245227859e-08
1.14100420044e-11 7.99780819349e-09
1.1766605817e-11 2.60455617074e-08
1.21231696296e-11 3.11794394747e-08
1.24797334423e-11 2.68863600272e-08
1.28362972549e-11 1.82204604737e-08
1.31928610676e-11 9.44076500309e-09
1.35494248802e-11 2.94301089054e-09
1.39059886928e-11 -6.60830064281e-10
1.42625525055e-11 -1.94315176449e-09
1.46191163181e-11 -1.88385876343e-09
1.49756801307e-11 -1.31259449143e-09
1.53322439434e-11 -7.3723263605e-10
1.5688807756e-11 -3.26461668462e-10
1.60453715686e-11 -1.01687795337e-10
1.64019353813e-11 -1.00319057532e-11
1.67584991939e-11 1.96886702905e-11
1.71150630066e-11 -1.75233443614e-12
1.74716268192e-11 -2.10613866842e-11
1.78281906318e-11 -2.03232181518e-11
1.81847544445e-11 -1.61619518766e-11
1.85413182571e-11 -1.30389918155e-11
1.88978820697e-11 -1.27598728025e-11
1.92544458824e-11 -1.02022554901e-11
1.9611009695e-11 -1.41491370486e-11
1.99675735077e-11 -1.23443050486e-11
2.03241373203e-11 -1.1243703722e-11
2.06807011329e-11 -6.11365423347e-12
2.10372649456e-11 -1.45525363678e-11
2.13938287582e-11 -4.8523240005e-12
2.17503925708e-11 -1.38806968307e-11
2.21069563835e-11 -3.66549064051e-12
2.24635201961e-11 -1.78529612697e-12
2.28200840087e-11 -1.40246098697e-11
2.31766478214e-11 -1.7995268253e-11
2.3533211634e-11 -1.19149177829e-11
2.38897754467e-11 -4.27666796833e-12
2.42463392593e-11 -4.96844424869e-12
2.46029030719e-11 -8.63008709634e-12

View File

@ -1,77 +1,74 @@
% time-domain voltage integration by openEMS v0.0.35-108-gc651cce @Wed Mar 12 09:10:37 2025
% start-coordinates: (-1.244e-05,-4.26269e-05,0.00015727) m -> [157,72,46]
% stop-coordinates: (-1.244e-05,-4.26269e-05,0.00016498) m -> [157,72,74]
% time-domain voltage integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:44:02 2026
% start-coordinates: (-1.244e-05,-4.2175e-05,0.00015727) m -> [95,46,24]
% stop-coordinates: (-1.244e-05,-4.2175e-05,0.00016498) m -> [95,46,34]
% t/s voltage
0 -0
3.56780456686e-13 -1.09447265834e-09
7.13560913371e-13 -1.09197532613e-09
1.07034137006e-12 5.53154697394e-10
1.42712182674e-12 6.35334569676e-09
1.78390228343e-12 1.99896832975e-08
2.14068274011e-12 4.52955906116e-08
2.4974631968e-12 8.31323210271e-08
2.85424365349e-12 1.25797880113e-07
3.21102411017e-12 1.50415257139e-07
3.56780456686e-12 1.14810391638e-07
3.92458502354e-12 -3.79210506329e-08
4.28136548023e-12 -3.6070095355e-07
4.63814593691e-12 -8.69399812586e-07
4.9949263936e-12 -1.50472560634e-06
5.35170685028e-12 -2.10906448217e-06
5.70848730697e-12 -2.44148826312e-06
6.06526776366e-12 -2.24349397371e-06
6.42204822034e-12 -1.34397692264e-06
6.77882867703e-12 2.36367013517e-07
7.13560913371e-12 2.23501336194e-06
7.4923895904e-12 4.19208352298e-06
7.84917004708e-12 5.58869598422e-06
8.20595050377e-12 6.0294643589e-06
8.56273096046e-12 5.3906199895e-06
8.91951141714e-12 3.86586010848e-06
9.27629187383e-12 1.88919252508e-06
9.63307233051e-12 -2.78267622278e-08
9.9898527872e-12 -1.47015145302e-06
1.03466332439e-11 -2.23281409717e-06
1.07034137006e-11 -2.33912900427e-06
1.10601941573e-11 -1.9760103882e-06
1.14169746139e-11 -1.39099958929e-06
1.17737550706e-11 -7.99986391797e-07
1.21305355273e-11 -3.3607581873e-07
1.2487315984e-11 -4.38963692062e-08
1.28440964407e-11 9.56460037838e-08
1.32008768974e-11 1.31075385212e-07
1.35576573541e-11 1.12494640048e-07
1.39144378107e-11 7.66460392931e-08
1.42712182674e-11 4.36916186564e-08
1.46279987241e-11 2.0812549073e-08
1.49847791808e-11 7.80809367162e-09
1.53415596375e-11 1.70930170712e-09
1.56983400942e-11 -5.13859659684e-10
1.60551205509e-11 -9.67480158487e-10
1.64119010075e-11 -8.70358157073e-10
1.67686814642e-11 -9.27412334428e-10
1.71254619209e-11 -8.33465201369e-10
1.74822423776e-11 -7.94826569145e-10
1.78390228343e-11 -8.0578517643e-10
1.8195803291e-11 -8.44116606474e-10
1.85525837477e-11 -8.75897826491e-10
1.89093642043e-11 -8.78836996232e-10
1.9266144661e-11 -8.53964760017e-10
1.96229251177e-11 -8.21870611498e-10
1.99797055744e-11 -8.02812772857e-10
2.03364860311e-11 -8.03665047705e-10
2.06932664878e-11 -8.15093759848e-10
2.10500469445e-11 -8.22605643325e-10
2.14068274011e-11 -8.17990586724e-10
2.17636078578e-11 -8.00205957052e-10
2.21203883145e-11 -7.79588855276e-10
2.24771687712e-11 -7.67587039069e-10
2.28339492279e-11 -7.6821825637e-10
2.31907296846e-11 -7.74823016511e-10
2.35475101413e-11 -7.79534149037e-10
2.39042905979e-11 -7.76543209943e-10
2.42610710546e-11 -7.67120740194e-10
2.46178515113e-11 -7.58823514441e-10
2.4974631968e-11 -7.53602073106e-10
2.53314124247e-11 -7.54134289738e-10
2.56881928814e-11 -7.57953052752e-10
3.56563812637e-13 -8.09302552057e-10
7.13127625273e-13 -8.09739376245e-10
1.06969143791e-12 4.15285325225e-10
1.42625525055e-12 4.75453887372e-09
1.78281906318e-12 1.49087466816e-08
2.13938287582e-12 3.37370211767e-08
2.49594668846e-12 6.19144429059e-08
2.85251050109e-12 9.36820687691e-08
3.20907431373e-12 1.1209322226e-07
3.56563812637e-12 8.58100155376e-08
3.922201939e-12 -2.74067255557e-08
4.27876575164e-12 -2.66952138617e-07
4.63532956428e-12 -6.44890892687e-07
4.99189337691e-12 -1.11765407951e-06
5.34845718955e-12 -1.56878523683e-06
5.70502100219e-12 -1.81987538639e-06
6.06158481482e-12 -1.67877658441e-06
6.41814862746e-12 -1.0172678202e-06
6.7747124401e-12 1.51592652209e-07
7.13127625273e-12 1.63578881995e-06
7.48784006537e-12 3.09622075179e-06
7.84440387801e-12 4.14812527083e-06
8.20096769064e-12 4.49572132766e-06
8.55753150328e-12 4.04235370866e-06
8.91409531592e-12 2.92592945073e-06
9.27065912855e-12 1.46383765554e-06
9.62722294119e-12 3.4080775535e-08
9.98378675383e-12 -1.05320167876e-06
1.03403505665e-11 -1.64088914545e-06
1.06969143791e-11 -1.74032834366e-06
1.10534781917e-11 -1.48555130863e-06
1.14100420044e-11 -1.05822202556e-06
1.1766605817e-11 -6.19208616826e-07
1.21231696296e-11 -2.69744692361e-07
1.24797334423e-11 -4.58984330542e-08
1.28362972549e-11 6.41664441581e-08
1.31928610676e-11 9.51874508104e-08
1.35494248802e-11 8.40829788018e-08
1.39059886928e-11 5.84864903175e-08
1.42625525055e-11 3.39883174938e-08
1.46191163181e-11 1.65195345181e-08
1.49756801307e-11 6.36874972204e-09
1.53322439434e-11 1.50171335783e-09
1.5688807756e-11 -3.03613918728e-10
1.60453715686e-11 -7.02828330257e-10
1.64019353813e-11 -6.40647385836e-10
1.67584991939e-11 -7.04823904102e-10
1.71150630066e-11 -6.5804603086e-10
1.74716268192e-11 -6.31826542474e-10
1.78281906318e-11 -6.19367123561e-10
1.81847544445e-11 -6.29638792493e-10
1.85413182571e-11 -6.38007383036e-10
1.88978820697e-11 -6.29273872593e-10
1.92544458824e-11 -6.17537652958e-10
1.9611009695e-11 -6.15646447016e-10
1.99675735077e-11 -6.1213022845e-10
2.03241373203e-11 -6.11802677963e-10
2.06807011329e-11 -6.07751713538e-10
2.10372649456e-11 -6.01367133174e-10
2.13938287582e-11 -5.93911125141e-10
2.17503925708e-11 -5.8916806156e-10
2.21069563835e-11 -6.02215610712e-10
2.24635201961e-11 -5.9343360781e-10
2.28200840087e-11 -5.90570675696e-10
2.31766478214e-11 -5.83742425925e-10
2.3533211634e-11 -5.83361338402e-10
2.38897754467e-11 -5.80394999422e-10
2.42463392593e-11 -5.78821181957e-10
2.46029030719e-11 -5.72971902563e-10

View File

@ -1,77 +1,74 @@
% time-domain voltage integration by openEMS v0.0.35-108-gc651cce @Wed Mar 12 09:10:37 2025
% start-coordinates: (-4.4935e-05,-4.26269e-05,0.000155995) m -> [87,72,41]
% stop-coordinates: (-4.8335e-05,-4.26269e-05,0.000155995) m -> [77,72,41]
% time-domain voltage integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:44:02 2026
% start-coordinates: (-4.4935e-05,-4.3075e-05,0.00015575) m -> [49,45,21]
% stop-coordinates: (-4.8335e-05,-4.3075e-05,0.00015575) m -> [45,45,21]
% t/s voltage
0 -0
3.56780456686e-13 3.0821314034e-11
7.13560913371e-13 -3.33812487201e-11
1.07034137006e-12 -1.24176750696e-11
1.42712182674e-12 1.20151213198e-11
1.78390228343e-12 5.80458051416e-11
2.14068274011e-12 1.65749768945e-10
2.4974631968e-12 3.61223023715e-10
2.85424365349e-12 6.04830890233e-10
3.21102411017e-12 7.73778020824e-10
3.56780456686e-12 6.23986314008e-10
3.92458502354e-12 -2.23594822345e-10
4.28136548023e-12 -2.07549707976e-09
4.63814593691e-12 -4.97475169392e-09
4.9949263936e-12 -8.32027718944e-09
5.35170685028e-12 -1.07363501978e-08
5.70848730697e-12 -1.02616679598e-08
6.06526776366e-12 -5.15437659221e-09
6.42204822034e-12 5.02929425883e-09
6.77882867703e-12 1.8486975395e-08
7.13560913371e-12 3.11044590084e-08
7.4923895904e-12 3.76540021385e-08
7.84917004708e-12 3.4028217577e-08
8.20595050377e-12 1.94468524617e-08
8.56273096046e-12 -2.55510729241e-09
8.91951141714e-12 -2.51372109794e-08
9.27629187383e-12 -4.09002278712e-08
9.63307233051e-12 -4.50175949851e-08
9.9898527872e-12 -3.71633184226e-08
1.03466332439e-11 -2.13134849769e-08
1.07034137006e-11 -3.64152377696e-09
1.10601941573e-11 1.02552256132e-08
1.14169746139e-11 1.73708855078e-08
1.17737550706e-11 1.77752604857e-08
1.21305355273e-11 1.37058362437e-08
1.2487315984e-11 8.03742228328e-09
1.28440964407e-11 3.02557950915e-09
1.32008768974e-11 -2.52044582579e-10
1.35576573541e-11 -1.74749979071e-09
1.39144378107e-11 -1.97213902153e-09
1.42712182674e-11 -1.5446614543e-09
1.46279987241e-11 -9.38037890419e-10
1.49847791808e-11 -4.12356659235e-10
1.53415596375e-11 -7.2657845452e-11
1.56983400942e-11 8.18180237103e-11
1.60551205509e-11 1.02709380063e-10
1.64119010075e-11 6.36443085733e-11
1.67686814642e-11 2.44882224307e-11
1.71254619209e-11 4.4017927019e-13
1.74822423776e-11 2.43287972233e-11
1.78390228343e-11 5.26600312835e-11
1.8195803291e-11 5.9109912711e-11
1.85525837477e-11 4.23165252839e-11
1.89093642043e-11 1.62749886267e-11
1.9266144661e-11 -2.80338682227e-12
1.96229251177e-11 -5.16774996276e-12
1.99797055744e-11 8.39037866962e-12
2.03364860311e-11 2.1821993431e-11
2.06932664878e-11 2.60539443752e-11
2.10500469445e-11 1.898372876e-11
2.14068274011e-11 7.15542620815e-12
2.17636078578e-11 -9.70919039137e-13
2.21203883145e-11 5.12792922952e-13
2.24771687712e-11 8.40207184426e-12
2.28339492279e-11 1.42149551678e-11
2.31907296846e-11 1.814866161e-11
2.35475101413e-11 1.28872916028e-11
2.39042905979e-11 7.57925395622e-12
2.42610710546e-11 4.78403181328e-12
2.46178515113e-11 4.99750842922e-12
2.4974631968e-11 9.17489071913e-12
2.53314124247e-11 1.36964670291e-11
2.56881928814e-11 1.38648577211e-11
3.56563812637e-13 2.84627764066e-11
7.13127625273e-13 -2.57546427761e-11
1.06969143791e-12 -8.790907943e-12
1.42625525055e-12 9.38256048376e-12
1.78281906318e-12 4.56026223727e-11
2.13938287582e-12 1.4071892436e-10
2.49594668846e-12 3.13678302083e-10
2.85251050109e-12 5.3407897202e-10
3.20907431373e-12 6.94134145995e-10
3.56563812637e-12 5.99317054317e-10
3.922201939e-12 -1.0487612688e-10
4.27876575164e-12 -1.69589917109e-09
4.63532956428e-12 -4.2528719435e-09
4.99189337691e-12 -7.28715671139e-09
5.34845718955e-12 -9.61877710814e-09
5.70502100219e-12 -9.49446199439e-09
6.06158481482e-12 -5.31714181018e-09
6.41814862746e-12 3.44460920898e-09
6.7747124401e-12 1.53650840939e-08
7.13127625273e-12 2.68779556389e-08
7.48784006537e-12 3.33632608207e-08
7.84440387801e-12 3.10098289269e-08
8.20096769064e-12 1.89065392231e-08
8.55753150328e-12 -5.76311220968e-11
8.91409531592e-12 -2.00075882528e-08
9.27065912855e-12 -3.44199264646e-08
9.62722294119e-12 -3.8958641202e-08
9.98378675383e-12 -3.3071524852e-08
1.03403505665e-11 -2.00041312404e-08
1.06969143791e-11 -4.98467455506e-09
1.10534781917e-11 7.22274540177e-09
1.14100420044e-11 1.38882614298e-08
1.1766605817e-11 1.48718624082e-08
1.21231696296e-11 1.19173728663e-08
1.24797334423e-11 7.36273075841e-09
1.28362972549e-11 3.1437815684e-09
1.31928610676e-11 2.61891017553e-10
1.35494248802e-11 -1.12386562556e-09
1.39059886928e-11 -1.40666357729e-09
1.42625525055e-11 -1.12568908361e-09
1.46191163181e-11 -6.98994487291e-10
1.49756801307e-11 -3.48187739058e-10
1.53322439434e-11 -1.19555343056e-10
1.5688807756e-11 -7.03583523907e-12
1.60453715686e-11 2.71130275349e-11
1.64019353813e-11 3.12481034971e-11
1.67584991939e-11 2.32003387855e-11
1.71150630066e-11 4.83621972222e-13
1.74716268192e-11 7.95200591572e-12
1.78281906318e-11 1.71966286697e-11
1.81847544445e-11 1.09567823564e-11
1.85413182571e-11 9.49426355677e-12
1.88978820697e-11 8.28174280456e-12
1.92544458824e-11 8.69518042637e-12
1.9611009695e-11 1.35003195689e-11
1.99675735077e-11 1.30140342947e-11
2.03241373203e-11 1.43885526323e-11
2.06807011329e-11 9.68251227893e-12
2.10372649456e-11 5.05779825574e-12
2.13938287582e-11 1.37218699944e-11
2.17503925708e-11 1.26342751365e-11
2.21069563835e-11 7.61066535314e-12
2.24635201961e-11 5.71745688988e-12
2.28200840087e-11 3.60824299042e-12
2.31766478214e-11 1.07845822116e-11
2.3533211634e-11 8.44788713809e-12
2.38897754467e-11 8.48553215541e-12
2.42463392593e-11 1.19249323415e-12
2.46029030719e-11 4.57648703005e-12

View File

@ -1,77 +1,74 @@
% time-domain voltage integration by openEMS v0.0.35-108-gc651cce @Wed Mar 12 09:10:37 2025
% start-coordinates: (-3.993e-05,-4.26269e-05,0.000155995) m -> [97,72,41]
% stop-coordinates: (-3.6065e-05,-4.26269e-05,0.000155995) m -> [107,72,41]
% time-domain voltage integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:44:02 2026
% start-coordinates: (-3.993e-05,-4.3075e-05,0.00015575) m -> [57,45,21]
% stop-coordinates: (-3.6065e-05,-4.3075e-05,0.00015575) m -> [63,45,21]
% t/s voltage
0 -0
3.56780456686e-13 -4.1560350994e-10
7.13560913371e-13 -1.09492874489e-09
1.07034137006e-12 -1.17918723397e-09
1.42712182674e-12 2.25261198583e-10
1.78390228343e-12 5.42343159271e-09
2.14068274011e-12 1.79831800562e-08
2.4974631968e-12 4.18730123908e-08
2.85424365349e-12 7.85321669916e-08
3.21102411017e-12 1.21633096484e-07
3.56780456686e-12 1.50307330138e-07
3.92458502354e-12 1.2440386854e-07
4.28136548023e-12 -1.23815881992e-08
4.63814593691e-12 -3.15629378633e-07
4.9949263936e-12 -8.08226587878e-07
5.35170685028e-12 -1.44133539948e-06
5.70848730697e-12 -2.06731957064e-06
6.06526776366e-12 -2.44873064048e-06
6.42204822034e-12 -2.31876798296e-06
6.77882867703e-12 -1.48546106971e-06
7.13560913371e-12 5.76548595532e-08
7.4923895904e-12 2.06945686898e-06
7.84917004708e-12 4.09352873021e-06
8.20595050377e-12 5.59134110745e-06
8.56273096046e-12 6.13099172142e-06
8.91951141714e-12 5.55124549351e-06
9.27629187383e-12 4.02483507855e-06
9.63307233051e-12 1.99092391995e-06
9.9898527872e-12 -1.12000883012e-08
1.03466332439e-11 -1.53056902263e-06
1.07034137006e-11 -2.33494193935e-06
1.10601941573e-11 -2.43949112644e-06
1.14169746139e-11 -2.04186297026e-06
1.17737550706e-11 -1.41036480272e-06
1.21305355273e-11 -7.80392909405e-07
1.2487315984e-11 -2.95702083264e-07
1.28440964407e-11 -1.28739001577e-09
1.32008768974e-11 1.28366822949e-07
1.35576573541e-11 1.49891470791e-07
1.39144378107e-11 1.19367710383e-07
1.42712182674e-11 7.60877534312e-08
1.46279987241e-11 4.00208659546e-08
1.49847791808e-11 1.68732935402e-08
1.53415596375e-11 4.90393528563e-09
1.56983400942e-11 9.88135471884e-11
1.60551205509e-11 -1.08174336849e-09
1.64119010075e-11 -8.85714807053e-10
1.67686814642e-11 -4.88230747497e-10
1.71254619209e-11 -4.50648379724e-10
1.74822423776e-11 -4.85335195644e-10
1.78390228343e-11 -5.21796494901e-10
1.8195803291e-11 -5.37419397179e-10
1.85525837477e-11 -5.27971631692e-10
1.89093642043e-11 -5.07367814429e-10
1.9266144661e-11 -4.96869736327e-10
1.96229251177e-11 -5.04321251427e-10
1.99797055744e-11 -5.24059174528e-10
2.03364860311e-11 -5.43469193259e-10
2.06932664878e-11 -5.53809494791e-10
2.10500469445e-11 -5.523614309e-10
2.14068274011e-11 -5.45701379917e-10
2.17636078578e-11 -5.44230056854e-10
2.21203883145e-11 -5.50788040177e-10
2.24771687712e-11 -5.65515467787e-10
2.28339492279e-11 -5.77049168865e-10
2.31907296846e-11 -5.83983843921e-10
2.35475101413e-11 -5.8260416283e-10
2.39042905979e-11 -5.81905783975e-10
2.42610710546e-11 -5.80686138063e-10
2.46178515113e-11 -5.86078602316e-10
2.4974631968e-11 -5.94537363785e-10
2.53314124247e-11 -6.01209030476e-10
2.56881928814e-11 -6.05675967713e-10
3.56563812637e-13 -3.12890897219e-10
7.13127625273e-13 -8.19288178966e-10
1.06969143791e-12 -8.94668304718e-10
1.42625525055e-12 1.63434564493e-10
1.78281906318e-12 4.04126287989e-09
2.13938287582e-12 1.34572606392e-08
2.49594668846e-12 3.13386911976e-08
2.85251050109e-12 5.87941428876e-08
3.20907431373e-12 9.11119801827e-08
3.56563812637e-12 1.12726146639e-07
3.922201939e-12 9.36474746638e-08
4.27876575164e-12 -8.24252893716e-09
4.63532956428e-12 -2.34661253984e-07
4.99189337691e-12 -6.03047304537e-07
5.34845718955e-12 -1.07728297394e-06
5.70502100219e-12 -1.54747755232e-06
6.06158481482e-12 -1.83623153305e-06
6.41814862746e-12 -1.74345883863e-06
6.7747124401e-12 -1.12430510057e-06
7.13127625273e-12 2.79279098736e-08
7.48784006537e-12 1.534748165e-06
7.84440387801e-12 3.05557387037e-06
8.20096769064e-12 4.18662153834e-06
8.55753150328e-12 4.60210918618e-06
8.91409531592e-12 4.17778989004e-06
9.27065912855e-12 3.03980823446e-06
9.62722294119e-12 1.51548589145e-06
9.98378675383e-12 9.37295574488e-09
1.03403505665e-11 -1.13822666492e-06
1.06969143791e-11 -1.75014123727e-06
1.10534781917e-11 -1.83518599783e-06
1.14100420044e-11 -1.54021377341e-06
1.1766605817e-11 -1.06656523258e-06
1.21231696296e-11 -5.91890106705e-07
1.24797334423e-11 -2.25412819077e-07
1.28362972549e-11 -1.99998281825e-09
1.31928610676e-11 9.68790363487e-08
1.35494248802e-11 1.13661494439e-07
1.39059886928e-11 9.07024393371e-08
1.42625525055e-11 5.78758898584e-08
1.46191163181e-11 3.04600873413e-08
1.49756801307e-11 1.2864709964e-08
1.53322439434e-11 3.74896963473e-09
1.5688807756e-11 9.91812083308e-11
1.60453715686e-11 -8.26881993432e-10
1.64019353813e-11 -7.00084809568e-10
1.67584991939e-11 -3.9779637917e-10
1.71150630066e-11 -3.65666597696e-10
1.74716268192e-11 -3.71154735418e-10
1.78281906318e-11 -3.82335982319e-10
1.81847544445e-11 -3.90863300059e-10
1.85413182571e-11 -3.86799731134e-10
1.88978820697e-11 -3.84784940022e-10
1.92544458824e-11 -3.89089337138e-10
1.9611009695e-11 -4.03097402679e-10
1.99675735077e-11 -4.01344606854e-10
2.03241373203e-11 -4.0603657589e-10
2.06807011329e-11 -4.08311010003e-10
2.10372649456e-11 -4.10637596843e-10
2.13938287582e-11 -4.17346383147e-10
2.17503925708e-11 -4.27092711891e-10
2.21069563835e-11 -4.25452294922e-10
2.24635201961e-11 -4.25168261708e-10
2.28200840087e-11 -4.34371982827e-10
2.31766478214e-11 -4.34532038823e-10
2.3533211634e-11 -4.38867209934e-10
2.38897754467e-11 -4.4310191627e-10
2.42463392593e-11 -4.39372521005e-10
2.46029030719e-11 -4.41197807455e-10

View File

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<ContinuousStructure CoordSystem="0">
<RectilinearGrid DeltaUnit="1e-06" CoordSystem="0">
<XLines Qty="184">-174.41,-164.736382140038,-155.062764280076,-145.389146420114,-135.715528560152,-126.041910700189,-116.368292840227,-106.694674980265,-99.1872172194175,-93.3608632278889,-88.839172674845,-85.3299994445171,-82.6066160957472,-80.4930650176021,-78.8527898202283,-77.5798124358914,-76.5918858833056,-75.8251802958279,-75.2301588781618,-74.7683773374192,-74.41,-74.11,-73.81,-73.435,-73.06,-72.76,-72.46,-71.96,-71.66,-71.36,-71.0509628757904,-70.649214614318,-70.1269418744038,-69.4479873125154,-68.5653463820604,-67.4179131724689,-65.92625,-64.4345868275311,-63.2871536179396,-62.4045126874847,-61.7255581255962,-61.203285385682,-60.8015371242096,-60.4925,-60.1925,-59.8925,-59.5952475071225,-59.30349002849,-59.008985042735,-58.7144800569801,-58.4199750712251,-58.1254700854701,-57.8309650997151,-57.5364601139601,-57.2419551282051,-56.9474501424501,-56.6529451566952,-56.3584401709402,-56.0639351851852,-55.6681873219373,-55.255,-54.8583742877493,-54.4460398860399,-54.1515349002849,-53.8570299145299,-53.5625249287749,-53.26801994302,-52.973514957265,-52.67900997151,-52.3849376780627,-52.09,-51.79,-51.265,-50.665,-49.765,-49.165,-48.6375,-48.335,-48.0375,-47.7375,-47.33625,-46.935,-46.635,-46.335,-45.935,-45.535,-45.235,-44.935,-44.695,-44.395,-44.095,-43.611875,-43.12875,-42.1625,-41.19625,-40.713125,-40.23,-39.93,-39.63,-39.33,-38.81375,-38.2975,-37.9975,-37.6975,-37.18125,-36.665,-36.365,-36.065,-35.765,-35.24,-34.64,-33.74,-33.14,-32.6125,-32.3125,-32.0140438034188,-31.7211752136752,-31.4267628205128,-31.1323504273504,-30.837938034188,-30.5435256410256,-30.2491132478632,-29.9547008547009,-29.5425053418803,-29.145,-28.7329700854701,-28.3373611111111,-28.0429487179487,-27.7485363247863,-27.4541239316239,-27.1597115384615,-26.8652991452991,-26.5708867521368,-26.2764743589744,-25.982061965812,-25.6876495726496,-25.3932371794872,-25.0988247863248,-24.8072061965812,-24.51,-24.21,-23.91,-23.6008917837444,-23.199051102612,-22.67665821714,-21.9975474660264,-21.1147034895787,-19.9670063201966,-18.475,-16.9829936798034,-15.8352965104213,-14.9524525339736,-14.27334178286,-13.750948897388,-13.3491082162556,-13.04,-12.74,-12.44,-11.94,-11.64,-11.34,-10.59,-10.29,-9.99,-9.6316226625808,-9.16984112183822,-8.5748197041721,-7.80811411669436,-6.82018756410861,-5.54721017977163,-3.90693498239781,-1.79338390425274,0.929999444517197,4.43917267484511,8.96086322788899,14.7872172194176,22.2946749802653,31.9682928402274,41.6419107001895,51.3155285601516,60.9891464201137,70.6627642800758,80.3363821400379,90.01</XLines>
<YLines Qty="143">-163.9,-154.239642358032,-144.579284716064,-134.918927074096,-125.258569432128,-115.59821179016,-105.937854148192,-96.2774965062235,-88.7893246873739,-82.9849104755217,-78.4856514897781,-74.9980762268929,-72.2947019039591,-70.1991965229937,-68.5748773288654,-67.315795453734,-66.3398252293996,-65.58330740669,-64.9968968771397,-64.5423440578343,-64.19,-63.895,-63.595,-63.295,-62.7025,-62.11,-61.5175,-60.925,-60.625,-60.325,-60.025,-59.725,-58.9925,-58.26,-57.5275,-56.795,-56.495,-56.195,-55.895,-55.595,-55.208125,-54.82125,-54.0475,-53.27375,-52.886875,-52.5,-52.2,-51.9,-51.5875480769231,-51.235,-50.915,-50.4052884615385,-50.015,-49.6583653846154,-49.3594230769231,-48.955,-48.6116346153846,-48.3126923076923,-48.055,-47.5657692307692,-47.2668269230769,-46.995,-46.5190384615385,-46.095,-45.7721153846154,-45.4731730769231,-45.035,-44.7253846153846,-44.4269711538462,-44.1275,-43.78,-43.075,-42.626875,-42.175,-41.4275,-41.1275,-40.7580430911681,-40.215,-39.9533262108262,-39.6597827635328,-39.155,-38.6337820512821,-38.255,-37.8985220797721,-37.6049786324786,-37.195,-36.8725213675214,-36.5789779202279,-36.295,-35.843717948718,-35.5501745014245,-35.235,-34.8177172364672,-34.335,-34.015,-33.6503365384615,-33.3525,-33.03875,-32.73875,-32.35453125,-31.9703125,-31.201875,-30.4334375,-30.04921875,-29.665,-29.365,-29.065,-28.765,-28.465,-27.7325,-27,-26.2675,-25.535,-25.235,-24.935,-24.635,-24.335,-23.74125,-23.1475,-22.55375,-21.96,-21.66,-21.36,-21.0016226625808,-20.5398411218382,-19.9448197041721,-19.1781141166944,-18.1901875641086,-16.9172101797716,-15.2769349823978,-13.1633839042527,-10.4400005554828,-6.93082732515489,-2.409136772111,3.41721721941757,10.9246749802653,20.5982928402274,30.2719107001895,39.9455285601516,49.6191464201137,59.2927642800758,68.9663821400379,78.64</YLines>
<ZLines Qty="113">0,11.3218316189194,22.6436632378389,33.0780198021099,43.512376366381,53.9467329306521,64.3810894949232,74.8154460591942,85.2498026234653,95.6841591877364,106.118515752007,116.552872316279,124.617594089445,130.82122622265,135.5932509405,139.264039185,142.08772245,144.2597865,145.930605,147.21585,148.2045,148.965,149.55,150,150.288461538462,150.576923076923,150.865384615385,151.153846153846,151.442307692308,151.730769230769,152.019230769231,152.307692307692,152.596153846154,152.884615384615,153.173076923077,153.461538461538,153.75,154.27,154.79,155.27,155.75,155.995,156.24,156.51,156.78,157.025,157.27,157.54,157.81,158.055,158.3,158.57,158.84,159.085,159.33,159.613433333333,159.896866666667,160.1803,160.466014285714,160.751728571429,161.037442857143,161.323157142857,161.608871428571,161.894585714286,162.1803,162.4603,162.7403,163.0203,163.3003,163.5803,163.8603,164.1403,164.4203,164.7003,164.9803,165.2803,165.5803,165.8803,166.1803,166.4803,166.7803,167.0803,167.3803,167.6803,167.9803,168.7303,169.1053,169.4803,169.6803,169.8803,170.3303,170.9153,171.6758,172.66445,173.949695,175.6205135,177.79257755,180.616260815,184.2870490595,189.05907377735,195.262705910555,203.327427683721,213.761784247993,224.196140812264,234.630497376535,245.064853940806,255.499210505077,265.933567069348,276.367923633619,286.80228019789,297.236636762161,308.558468381081,319.8803</ZLines>
<XLines Qty="109">-94.41,-89.314071377464,-85.3941262832055,-82.3787839030067,-80.0592897643922,-78.2750635039195,-76.9025817650944,-75.8468265813827,-75.0347072092968,-74.41,-73.91,-72.96,-72.46,-71.96,-71.46,-70.96,-70.33078125,-69.7015625,-68.443125,-65.92625,-63.409375,-62.1509375,-61.52171875,-60.8925,-60.3925,-59.8925,-59.398671875,-58.9171875,-58.42953125,-57.941875,-57.45421875,-56.9665625,-56.47890625,-55.81546875,-55.255,-54.58125,-54.040625,-53.55296875,-53.0653125,-52.58,-52.09,-51.265,-50.665,-49.765,-49.165,-48.335,-47.8375,-46.635,-45.785,-44.935,-44.195,-43.695,-43.023125,-42.35125,-41.679375,-41.0075,-40.5075,-39.93,-39.43,-38.71375,-37.9975,-37.28125,-36.565,-36.065,-35.24,-34.64,-33.74,-33.14,-32.3125,-31.8175,-31.335,-30.8475,-30.36,-29.69796875,-29.145,-28.463125,-27.9225,-27.435,-26.9475,-26.46,-25.9725,-25.485,-25.00375,-24.51,-24.01,-23.51,-22.880625,-22.25125,-20.9925,-18.475,-15.9575,-14.69875,-14.069375,-13.44,-12.94,-12.44,-11.94,-11.44,-10.49,-9.99,-9.36529279070317,-8.55317341861729,-7.49741823490564,-6.1249364960805,-4.34071023560782,-2.02121609699334,0.994126283205492,4.91407137746397,10.01</XLines>
<YLines Qty="91">-83.9,-78.9289216287161,-75.105015189267,-72.163548697383,-69.9008821651646,-68.1603694480735,-66.8215135118495,-65.7916243301388,-64.9994018826691,-64.39,-63.895,-63.395,-62.895,-62.11,-61.325,-60.825,-60.325,-59.825,-59.325,-58.26,-57.195,-56.695,-56.195,-55.695,-55.195,-54.0475,-52.9,-52.4,-51.9,-51.075,-50.44265625,-50.015,-49.47109375,-48.955,-48.49953125,-48.055,-47.52796875,-46.995,-46.5159375,-46.095,-45.58484375,-45.035,-44.6196875,-44.1275,-43.6275,-43.075,-42.175,-41.6275,-41.1275,-40.63671875,-40.215,-39.66921875,-39.155,-38.69703125,-38.255,-37.72484375,-37.195,-36.75265625,-36.295,-35.78046875,-35.235,-34.80828125,-34.175,-33.3525,-32.83875,-32.33875,-31.201875,-30.065,-29.565,-29.065,-28.565,-28.065,-27,-25.935,-25.435,-24.935,-24.435,-23.935,-23.1475,-22.36,-21.86,-21.36,-20.7352927907032,-19.9231734186173,-18.8674182349056,-17.4949364960805,-15.7107102356078,-13.3912160969933,-10.3758737167945,-6.45592862253603,-1.36</YLines>
<ZLines Qty="61">0,9.375,18.75,28.125,37.5,46.875,56.25,65.625,75,84.375,93.75,103.125,112.5,121.875,131.25,140.625,145.3125,150,151.875,153.75,154.75,155.75,156.24,156.78,157.27,157.81,158.3,158.84,159.33,160.1803,160.6803,161.6803,162.1803,163.5803,164.9803,165.4803,166.4803,167.4803,167.9803,168.7303,169.4803,169.8803,171.052175,172.22405,174.5678,179.2553,188.6303,198.0053,207.3803,216.7553,226.1303,235.5053,244.8803,254.2553,263.6303,273.0053,282.3803,291.7553,301.1303,310.5053,319.8803</ZLines>
</RectilinearGrid>
<BackgroundMaterial Epsilon="1" Mue="1" Kappa="0" Sigma="0" />
<ParameterSet />
@ -601,8 +601,8 @@
<EdgeColor R="208" G="208" B="208" a="20" />
<Primitives>
<Box Priority="10">
<P1 X="-1.744100e+02" Y="-1.639000e+02" Z="1.698803e+02" />
<P2 X="9.001000e+01" Y="7.864000e+01" Z="3.198803e+02" />
<P1 X="-9.441000e+01" Y="-8.390000e+01" Z="1.698803e+02" />
<P2 X="1.001000e+01" Y="-1.360000e+00" Z="3.198803e+02" />
</Box>
</Primitives>
<Property Epsilon="1.000000e+00,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="0.000000e+00,0.000000e+00,0.000000e+00" Sigma="0.000000e+00,0.000000e+00,0.000000e+00" Density="0.000000e+00" />
@ -613,8 +613,8 @@
<EdgeColor R="160" G="160" B="240" a="20" />
<Primitives>
<Box Priority="10">
<P1 X="-1.744100e+02" Y="-1.639000e+02" Z="1.694803e+02" />
<P2 X="9.001000e+01" Y="7.864000e+01" Z="1.698803e+02" />
<P1 X="-9.441000e+01" Y="-8.390000e+01" Z="1.694803e+02" />
<P2 X="1.001000e+01" Y="-1.360000e+00" Z="1.698803e+02" />
</Box>
</Primitives>
<Property Epsilon="6.600000e+00,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="0.000000e+00,0.000000e+00,0.000000e+00" Sigma="0.000000e+00,0.000000e+00,0.000000e+00" Density="0.000000e+00" />
@ -625,8 +625,8 @@
<EdgeColor R="255" G="252" B="173" a="20" />
<Primitives>
<Box Priority="10">
<P1 X="-1.744100e+02" Y="-1.639000e+02" Z="1.537500e+02" />
<P2 X="9.001000e+01" Y="7.864000e+01" Z="1.694803e+02" />
<P1 X="-9.441000e+01" Y="-8.390000e+01" Z="1.537500e+02" />
<P2 X="1.001000e+01" Y="-1.360000e+00" Z="1.694803e+02" />
</Box>
</Primitives>
<Property Epsilon="4.100000e+00,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="0.000000e+00,0.000000e+00,0.000000e+00" Sigma="0.000000e+00,0.000000e+00,0.000000e+00" Density="0.000000e+00" />
@ -637,8 +637,8 @@
<EdgeColor R="41" G="79" B="255" a="20" />
<Primitives>
<Box Priority="10">
<P1 X="-1.744100e+02" Y="-1.639000e+02" Z="1.500000e+02" />
<P2 X="9.001000e+01" Y="7.864000e+01" Z="1.537500e+02" />
<P1 X="-9.441000e+01" Y="-8.390000e+01" Z="1.500000e+02" />
<P2 X="1.001000e+01" Y="-1.360000e+00" Z="1.537500e+02" />
</Box>
</Primitives>
<Property Epsilon="1.190000e+01,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="5.000000e+00,0.000000e+00,0.000000e+00" Sigma="0.000000e+00,0.000000e+00,0.000000e+00" Density="0.000000e+00" />
@ -649,14 +649,14 @@
<EdgeColor R="1" G="224" B="255" a="20" />
<Primitives>
<Box Priority="10">
<P1 X="-1.744100e+02" Y="-1.639000e+02" Z="0.000000e+00" />
<P2 X="9.001000e+01" Y="7.864000e+01" Z="1.500000e+02" />
<P1 X="-9.441000e+01" Y="-8.390000e+01" Z="0.000000e+00" />
<P2 X="1.001000e+01" Y="-1.360000e+00" Z="1.500000e+02" />
</Box>
</Primitives>
<Property Epsilon="1.190000e+01,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="2.000000e+00,0.000000e+00,0.000000e+00" Sigma="0.000000e+00,0.000000e+00,0.000000e+00" Density="0.000000e+00" />
<Weight Epsilon="1.000000e+00,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="1.000000e+00,1.000000e+00,1.000000e+00" Sigma="1.000000e+00,1.000000e+00,1.000000e+00" Density="1.000000e+00" />
</Material>
<LumpedElement ID="16" Name="port_resist_1" Direction="2" Caps="1" R="5.000000e+01" C="nan" L="nan">
<LumpedElement ID="16" Name="port_resist_1" Direction="2" Caps="1" R="5.000000e+01" C="nan" L="nan" LEtype="0.000000e+00">
<FillColor R="229" G="202" B="11" a="255" />
<EdgeColor R="229" G="202" B="11" a="255" />
<Primitives>
@ -686,7 +686,7 @@
</Box>
</Primitives>
</ProbeBox>
<LumpedElement ID="19" Name="port_resist_2" Direction="2" Caps="1" R="5.000000e+01" C="nan" L="nan">
<LumpedElement ID="19" Name="port_resist_2" Direction="2" Caps="1" R="5.000000e+01" C="nan" L="nan" LEtype="0.000000e+00">
<FillColor R="31" G="35" B="30" a="255" />
<EdgeColor R="31" G="35" B="30" a="255" />
<Primitives>
@ -696,7 +696,7 @@
</Box>
</Primitives>
</LumpedElement>
<Excitation ID="20" Name="port_excite_2" Number="0" Frequency="0.000000e+00" Delay="0.000000e+00" Type="0" Excite="0.000000e+00,0.000000e+00,-1.000000e+00" PropDir="0.000000e+00,0.000000e+00,0.000000e+00">
<Excitation ID="20" Name="port_excite_2" Number="0" Enabled="1" Frequency="0.000000e+00" Delay="0.000000e+00" Type="0" Excite="0.000000e+00,0.000000e+00,-1.000000e+00" PropDir="0.000000e+00,0.000000e+00,0.000000e+00">
<FillColor R="168" G="28" B="123" a="255" />
<EdgeColor R="168" G="28" B="123" a="255" />
<Primitives>
@ -727,7 +727,7 @@
</Box>
</Primitives>
</ProbeBox>
<LumpedElement ID="23" Name="port_resist_3" Direction="0" Caps="1" R="5.000000e+01" C="nan" L="nan">
<LumpedElement ID="23" Name="port_resist_3" Direction="0" Caps="1" R="5.000000e+01" C="nan" L="nan" LEtype="0.000000e+00">
<FillColor R="94" G="75" B="121" a="255" />
<EdgeColor R="94" G="75" B="121" a="255" />
<Primitives>
@ -757,7 +757,7 @@
</Box>
</Primitives>
</ProbeBox>
<LumpedElement ID="26" Name="port_resist_4" Direction="0" Caps="1" R="5.000000e+01" C="nan" L="nan">
<LumpedElement ID="26" Name="port_resist_4" Direction="0" Caps="1" R="5.000000e+01" C="nan" L="nan" LEtype="0.000000e+00">
<FillColor R="158" G="9" B="220" a="255" />
<EdgeColor R="158" G="9" B="220" a="255" />
<Primitives>

View File

@ -0,0 +1 @@
588ae59ad706b71d835f9e72374517108168c118a12acfbfbcda892f670897d8

View File

@ -1,74 +1,76 @@
% time-domain current integration by openEMS v0.0.35-108-gc651cce @Wed Mar 12 09:21:07 2025
% start-coordinates: (-7.276e-05,-4.4427e-05,0.000161037) m -> [25,68,60]
% stop-coordinates: (-7.196e-05,-4.11275e-05,0.000161037) m -> [27,75,60]
% time-domain current integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:44:44 2026
% start-coordinates: (-7.296e-05,-4.46197e-05,0.00016068) m -> [11,42,30]
% stop-coordinates: (-7.196e-05,-4.11275e-05,0.00016068) m -> [13,48,30]
% t/s current
2.44035880086e-16 0
3.57024492566e-13 4.41609630808e-11
7.13804949251e-13 1.10433204248e-10
1.07058540594e-12 1.16602463796e-10
1.42736586262e-12 -3.07000883049e-11
1.78414631931e-12 -5.66310498495e-10
2.14092677599e-12 -1.8496951748e-09
2.49770723268e-12 -4.27542001802e-09
2.85448768937e-12 -7.97516808149e-09
3.21126814605e-12 -1.22837695571e-08
3.56804860274e-12 -1.50653036712e-08
3.92482905942e-12 -1.22513155176e-08
4.28160951611e-12 1.81881387729e-09
4.63838997279e-12 3.26683888829e-08
4.99517042948e-12 8.24494961194e-08
5.35195088616e-12 1.46042808069e-07
5.70873134285e-12 2.08415755765e-07
6.06551179954e-12 2.45636044838e-07
6.42229225622e-12 2.3105089042e-07
6.77907271291e-12 1.4578095886e-07
7.13585316959e-12 -1.0260722938e-08
7.49263362628e-12 -2.12345128148e-07
7.84941408296e-12 -4.14409669247e-07
8.20619453965e-12 -5.62584148156e-07
8.56297499634e-12 -6.14110945207e-07
8.91975545302e-12 -5.53592826691e-07
9.27653590971e-12 -3.99040175125e-07
9.63331636639e-12 -1.94834697709e-07
9.99009682308e-12 5.04794872569e-09
1.03468772798e-11 1.5583744073e-07
1.07036577364e-11 2.34822977063e-07
1.10604381931e-11 2.43999153327e-07
1.14172186498e-11 2.03415481792e-07
1.17739991065e-11 1.39954238421e-07
1.21307795632e-11 7.70353238977e-08
1.24875600199e-11 2.88459247599e-08
1.28443404766e-11 -2.81825118797e-10
1.32011209332e-11 -1.30000818999e-08
1.35579013899e-11 -1.50034740187e-08
1.39146818466e-11 -1.18867200527e-08
1.42714623033e-11 -7.54782636392e-09
1.462824276e-11 -3.95438792822e-09
1.49850232167e-11 -1.65823277332e-09
1.53418036734e-11 -4.75725736582e-10
1.569858413e-11 -3.77731179668e-12
1.60553645867e-11 1.10157404032e-10
1.64121450434e-11 8.91741333553e-11
1.67689255001e-11 4.99903521356e-11
1.71257059568e-11 4.59272793407e-11
1.74824864135e-11 4.8963545024e-11
1.78392668702e-11 5.27136008455e-11
1.81960473268e-11 5.41609188054e-11
1.85528277835e-11 5.33286158289e-11
1.89096082402e-11 5.14369484506e-11
1.92663886969e-11 5.0363969939e-11
1.96231691536e-11 5.08715708447e-11
1.99799496103e-11 5.27931136307e-11
2.0336730067e-11 5.46813774815e-11
2.06935105236e-11 5.56853972655e-11
2.10502909803e-11 5.56704508881e-11
2.1407071437e-11 5.51269724314e-11
2.17638518937e-11 5.49085603374e-11
2.21206323504e-11 5.5571339197e-11
2.24774128071e-11 5.67731243961e-11
2.28341932638e-11 5.79387510191e-11
2.31909737204e-11 5.85704540423e-11
2.35477541771e-11 5.86490786492e-11
2.39045346338e-11 5.84081394361e-11
2.42613150905e-11 5.84877632437e-11
2.46180955472e-11 5.88701865034e-11
4.51346598274e-16 0
3.57015159235e-13 3.52072780652e-11
7.13578971872e-13 8.85383572014e-11
1.07014278451e-12 9.31818858185e-11
1.42670659714e-12 -2.44620001338e-11
1.78327040978e-12 -4.51525983269e-10
2.13983422242e-12 -1.4792984615e-09
2.49639803505e-12 -3.41916872593e-09
2.85296184769e-12 -6.37927799474e-09
3.20952566033e-12 -9.83122738774e-09
3.56608947296e-12 -1.20716094898e-08
3.9226532856e-12 -9.85217951666e-09
4.27921709824e-12 1.35085664876e-09
4.63578091087e-12 2.5964467909e-08
4.99234472351e-12 6.57417018601e-08
5.34890853615e-12 1.16635774816e-07
5.70547234878e-12 1.66688622016e-07
6.06203616142e-12 1.9679680463e-07
6.41859997406e-12 1.85610005587e-07
6.77516378669e-12 1.17905962327e-07
7.13172759933e-12 -6.58261090081e-09
7.48829141197e-12 -1.68291251157e-07
7.8448552246e-12 -3.30500853352e-07
8.20141903724e-12 -4.50060326784e-07
8.55798284988e-12 -4.92512242545e-07
8.91454666251e-12 -4.45161248308e-07
9.27111047515e-12 -3.2206924061e-07
9.62767428779e-12 -1.58571438647e-07
9.98423810042e-12 2.07778461103e-09
1.03408019131e-11 1.23783181039e-07
1.06973657257e-11 1.88023363989e-07
1.10539295383e-11 1.96113376205e-07
1.1410493351e-11 1.63964159583e-07
1.17670571636e-11 1.13123689971e-07
1.21236209762e-11 6.24747116262e-08
1.24801847889e-11 2.35382238145e-08
1.28367486015e-11 -9.01193841774e-11
1.31933124142e-11 -1.04678008483e-08
1.35498762268e-11 -1.21508305639e-08
1.39064400394e-11 -9.65288649013e-09
1.42630038521e-11 -6.13965145391e-09
1.46195676647e-11 -3.22156612498e-09
1.49761314773e-11 -1.355552115e-09
1.533269529e-11 -3.92592486298e-10
1.56892591026e-11 -7.9839850009e-12
1.60458229152e-11 8.82123887824e-11
1.64023867279e-11 7.3809854062e-11
1.67589505405e-11 4.23476358147e-11
1.71155143532e-11 3.88420545727e-11
1.74720781658e-11 3.9578659794e-11
1.78286419784e-11 4.07913390565e-11
1.81852057911e-11 4.1583656657e-11
1.85417696037e-11 4.10856453026e-11
1.88983334163e-11 4.12661502192e-11
1.9254897229e-11 4.17097745231e-11
1.96114610416e-11 4.31226651609e-11
1.99680248543e-11 4.30432287035e-11
2.03245886669e-11 4.36045297092e-11
2.06811524795e-11 4.35531437304e-11
2.10377162922e-11 4.39563281607e-11
2.13942801048e-11 4.45479798883e-11
2.17508439174e-11 4.56170379248e-11
2.21074077301e-11 4.55927171017e-11
2.24639715427e-11 4.54620785462e-11
2.28205353553e-11 4.63388320771e-11
2.3177099168e-11 4.64016255974e-11
2.35336629806e-11 4.70198567581e-11
2.38902267933e-11 4.74349171053e-11
2.42467906059e-11 4.70702123112e-11
2.46033544185e-11 4.7147532406e-11
2.49599182312e-11 4.79476319759e-11
2.53164820438e-11 4.83130341289e-11

View File

@ -1,74 +1,76 @@
% time-domain current integration by openEMS v0.0.35-108-gc651cce @Wed Mar 12 09:21:07 2025
% start-coordinates: (-1.274e-05,-4.4427e-05,0.000161037) m -> [156,68,60]
% stop-coordinates: (-1.194e-05,-4.11275e-05,0.000161037) m -> [158,75,60]
% time-domain current integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:44:44 2026
% start-coordinates: (-1.294e-05,-4.46197e-05,0.00016068) m -> [94,42,30]
% stop-coordinates: (-1.194e-05,-4.11275e-05,0.00016068) m -> [96,48,30]
% t/s current
2.44035880086e-16 0
3.57024492566e-13 -1.32984866608e-12
7.13804949251e-13 2.78363790351e-12
1.07058540594e-12 7.70561240683e-13
1.42736586262e-12 -2.91762989636e-12
1.78414631931e-12 -1.09534152581e-11
2.14092677599e-12 -2.82487991332e-11
2.49770723268e-12 -5.57481075192e-11
2.85448768937e-12 -8.80426703764e-11
3.21126814605e-12 -1.05329640843e-10
3.56804860274e-12 -7.12792463942e-11
3.92482905942e-12 6.37524963376e-11
4.28160951611e-12 3.40276723465e-10
4.63838997279e-12 7.53313023072e-10
4.99517042948e-12 1.21121290775e-09
5.35195088616e-12 1.5180314783e-09
5.70873134285e-12 1.41119982366e-09
6.06551179954e-12 6.67630173368e-10
6.42229225622e-12 -7.51933126875e-10
6.77907271291e-12 -2.58704502265e-09
7.13585316959e-12 -4.28228430494e-09
7.49263362628e-12 -5.15223552711e-09
7.84941408296e-12 -4.67077443389e-09
8.20619453965e-12 -2.75125344729e-09
8.56297499634e-12 1.36821831642e-10
8.91975545302e-12 3.10899239686e-09
9.27653590971e-12 5.21682874677e-09
9.63331636639e-12 5.83996984105e-09
9.99009682308e-12 4.92899543403e-09
1.03468772798e-11 2.97312507946e-09
1.07036577364e-11 7.42521377717e-10
1.10604381931e-11 -1.05583575216e-09
1.14172186498e-11 -2.03013983402e-09
1.17739991065e-11 -2.1683352891e-09
1.21307795632e-11 -1.72994252257e-09
1.24875600199e-11 -1.06402930911e-09
1.28443404766e-11 -4.5155734707e-10
1.32011209332e-11 -3.52700299522e-11
1.35579013899e-11 1.68120489752e-10
1.39146818466e-11 2.14430029288e-10
1.42714623033e-11 1.76397105256e-10
1.462824276e-11 1.11495729316e-10
1.49850232167e-11 5.28166399505e-11
1.53418036734e-11 1.37122934535e-11
1.569858413e-11 -5.07725372162e-12
1.60553645867e-11 -8.98923123438e-12
1.64121450434e-11 -5.5704681319e-12
1.67689255001e-11 -1.69155249703e-12
1.71257059568e-11 7.6028403408e-13
1.74824864135e-11 -1.52321254568e-12
1.78392668702e-11 -4.3765507711e-12
1.81960473268e-11 -5.08941846999e-12
1.85528277835e-11 -3.6924408843e-12
1.89096082402e-11 -1.0834208964e-12
1.92663886969e-11 8.03950927098e-13
1.96231691536e-11 9.36402322869e-13
1.99799496103e-11 -1.88393246316e-13
2.0336730067e-11 -1.51669432222e-12
2.06935105236e-11 -2.00625518802e-12
2.10502909803e-11 -1.44431103362e-12
2.1407071437e-11 -2.25176919211e-13
2.17638518937e-11 4.47631189927e-13
2.21206323504e-11 3.63179457211e-13
2.24774128071e-11 -3.01119047232e-13
2.28341932638e-11 -1.08451886794e-12
2.31909737204e-11 -1.34788729657e-12
2.35477541771e-11 -9.510599773e-13
2.39045346338e-11 -4.08779455598e-13
2.42613150905e-11 -7.80053512018e-14
2.46180955472e-11 -1.8593519736e-13
4.51346598274e-16 0
3.57015159235e-13 -1.39389324735e-12
7.13578971872e-13 2.62722677814e-12
1.07014278451e-12 1.87783748512e-13
1.42670659714e-12 -2.52396909796e-12
1.78327040978e-12 -9.08930569699e-12
2.13983422242e-12 -2.33634552677e-11
2.49639803505e-12 -4.8448474399e-11
2.85296184769e-12 -7.69395519518e-11
3.20952566033e-12 -9.49198428191e-11
3.56608947296e-12 -7.01837338246e-11
3.9226532856e-12 4.25293134043e-11
4.27921709824e-12 2.79795103753e-10
4.63578091087e-12 6.42455921795e-10
4.99234472351e-12 1.05455022492e-09
5.34890853615e-12 1.34932631735e-09
5.70547234878e-12 1.290305085e-09
6.06203616142e-12 6.72020772363e-10
6.41859997406e-12 -5.55863244323e-10
6.77516378669e-12 -2.18332285584e-09
7.13172759933e-12 -3.72342490174e-09
7.48829141197e-12 -4.56556303874e-09
7.8448552246e-12 -4.22248547238e-09
8.20141903724e-12 -2.59118970725e-09
8.55798284988e-12 -6.71513400441e-11
8.91454666251e-12 2.57622478905e-09
9.27111047515e-12 4.49262582691e-09
9.62767428779e-12 5.12202458225e-09
9.98423810042e-12 4.39639125105e-09
1.03408019131e-11 2.73138289764e-09
1.06973657257e-11 7.94930121728e-10
1.10539295383e-11 -7.9803552655e-10
1.1410493351e-11 -1.6931550606e-09
1.17670571636e-11 -1.86388660062e-09
1.21236209762e-11 -1.52302515044e-09
1.24801847889e-11 -9.6497865254e-10
1.28367486015e-11 -4.36191138764e-10
1.31933124142e-11 -6.74950095814e-11
1.35498762268e-11 1.17318516013e-10
1.39064400394e-11 1.62816926608e-10
1.42630038521e-11 1.35209066165e-10
1.46195676647e-11 8.61517246431e-11
1.49761314773e-11 4.41198258483e-11
1.533269529e-11 1.62809609544e-11
1.56892591026e-11 2.1746365559e-12
1.60458229152e-11 -2.56076626917e-12
1.64023867279e-11 -3.32111053068e-12
1.67589505405e-11 -2.15468615172e-12
1.71155143532e-11 7.84668554091e-14
1.74720781658e-11 -5.64623597443e-13
1.78286419784e-11 -1.51931353783e-12
1.81852057911e-11 -1.07783194262e-12
1.85417696037e-11 -6.98698802808e-13
1.88983334163e-11 -3.97493805449e-13
1.9254897229e-11 -6.96198090497e-13
1.96114610416e-11 -1.0885809398e-12
1.99680248543e-11 -1.05897842578e-12
2.03245886669e-11 -9.99150740442e-13
2.06811524795e-11 -7.90174241143e-13
2.10377162922e-11 -2.07232831156e-13
2.13942801048e-11 -1.21373115551e-12
2.17508439174e-11 -9.31723014713e-13
2.21074077301e-11 -5.42745536014e-13
2.24639715427e-11 -3.91886745494e-13
2.28205353553e-11 -1.18597677252e-13
2.3177099168e-11 -1.01157190263e-12
2.35336629806e-11 -8.23050666249e-13
2.38902267933e-11 -7.48803634116e-13
2.42467906059e-11 -5.03055781168e-14
2.46033544185e-11 -3.60856093271e-13
2.49599182312e-11 -4.19806144058e-13
2.53164820438e-11 -5.1499071934e-13

View File

@ -1,74 +1,76 @@
% time-domain current integration by openEMS v0.0.35-108-gc651cce @Wed Mar 12 09:21:07 2025
% start-coordinates: (-4.6935e-05,-5.22e-05,0.00015527) m -> [81,46,39]
% stop-coordinates: (-4.6935e-05,-3.33525e-05,0.00015624) m -> [81,96,42]
% time-domain current integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:44:44 2026
% start-coordinates: (-4.78375e-05,-5.24e-05,0.00015475) m -> [46,27,20]
% stop-coordinates: (-4.78375e-05,-3.33525e-05,0.00015624) m -> [46,63,22]
% t/s current
2.44035880086e-16 -0
3.57024492566e-13 -1.17387849441e-10
7.13804949251e-13 -1.09250219982e-10
1.07058540594e-12 5.44649360334e-11
1.42736586262e-12 6.47954190303e-10
1.78414631931e-12 2.03271377508e-09
2.14092677599e-12 4.60666083058e-09
2.49770723268e-12 8.44516101495e-09
2.85448768937e-12 1.27526815774e-08
3.21126814605e-12 1.51799586234e-08
3.56804860274e-12 1.14231237802e-08
3.92482905942e-12 -4.290677591e-09
4.28160951611e-12 -3.72714836772e-08
4.63838997279e-12 -8.89629347967e-08
4.99517042948e-12 -1.53081316512e-07
5.35195088616e-12 -2.13341124322e-07
5.70873134285e-12 -2.45139347044e-07
6.06551179954e-12 -2.22440320385e-07
6.42229225622e-12 -1.28563030444e-07
6.77907271291e-12 3.32848024698e-08
7.13585316959e-12 2.35269965287e-07
7.49263362628e-12 4.29989484019e-07
7.84941408296e-12 5.65027278299e-07
8.20619453965e-12 6.01655017363e-07
8.56297499634e-12 5.29537828697e-07
8.91975545302e-12 3.70602293742e-07
9.27653590971e-12 1.70307657754e-07
9.63331636639e-12 -1.94739477877e-08
9.99009682308e-12 -1.5810395837e-07
1.03468772798e-11 -2.27093337912e-07
1.07036577364e-11 -2.31045888199e-07
1.10604381931e-11 -1.90324499272e-07
1.14172186498e-11 -1.30277115318e-07
1.17739991065e-11 -7.20578157143e-08
1.21307795632e-11 -2.79437735173e-08
1.24875600199e-11 -1.29661681392e-09
1.28443404766e-11 1.05700062036e-08
1.32011209332e-11 1.28300436941e-08
1.35579013899e-11 1.04399875411e-08
1.39146818466e-11 6.82718459544e-09
1.42714623033e-11 3.7395455621e-09
1.462824276e-11 1.70265568311e-09
1.49850232167e-11 6.00584026955e-10
1.53418036734e-11 1.14906494042e-10
1.569858413e-11 -4.40836950277e-11
1.60553645867e-11 -6.43835956771e-11
1.64121450434e-11 -4.8211983017e-11
1.67689255001e-11 -5.96513602402e-11
1.71257059568e-11 -5.43202496872e-11
1.74824864135e-11 -5.23754373205e-11
1.78392668702e-11 -5.35363697818e-11
1.81960473268e-11 -5.60243032521e-11
1.85528277835e-11 -5.81276624056e-11
1.89096082402e-11 -5.89345308666e-11
1.92663886969e-11 -5.83717518765e-11
1.96231691536e-11 -5.74647482376e-11
1.99799496103e-11 -5.71298668095e-11
2.0336730067e-11 -5.76446737566e-11
2.06935105236e-11 -5.90089435648e-11
2.10502909803e-11 -6.01680649748e-11
2.1407071437e-11 -6.06023356498e-11
2.17638518937e-11 -6.05975825074e-11
2.21206323504e-11 -6.03637001495e-11
2.24774128071e-11 -6.04849156871e-11
2.28341932638e-11 -6.09509942517e-11
2.31909737204e-11 -6.18533557706e-11
2.35477541771e-11 -6.25427903911e-11
2.39045346338e-11 -6.28684118653e-11
2.42613150905e-11 -6.30463112272e-11
2.46180955472e-11 -6.29997720658e-11
4.51346598274e-16 -0
3.57015159235e-13 -9.96012647358e-11
7.13578971872e-13 -8.84547851632e-11
1.07014278451e-12 4.1953111124e-11
1.42670659714e-12 5.16079567969e-10
1.78327040978e-12 1.62385405122e-09
2.13983422242e-12 3.68341157575e-09
2.49639803505e-12 6.76298084201e-09
2.85296184769e-12 1.02309209993e-08
3.20952566033e-12 1.22118271051e-08
3.56608947296e-12 9.26362897502e-09
3.9226532856e-12 -3.24993210121e-09
4.27921709824e-12 -2.96098221497e-08
4.63578091087e-12 -7.10264842496e-08
4.99234472351e-12 -1.22530849467e-07
5.34890853615e-12 -1.71123161863e-07
5.70547234878e-12 -1.97073077857e-07
6.06203616142e-12 -1.7941155761e-07
6.41859997406e-12 -1.04582085214e-07
6.77516378669e-12 2.50726497342e-08
7.13172759933e-12 1.87403557561e-07
7.48829141197e-12 3.4440233776e-07
7.8448552246e-12 4.53840470982e-07
8.20141903724e-12 4.84304791826e-07
8.55798284988e-12 4.27126678915e-07
8.91454666251e-12 2.99650849911e-07
9.27111047515e-12 1.38338123179e-07
9.62767428779e-12 -1.49569423513e-08
9.98423810042e-12 -1.27259426108e-07
1.03408019131e-11 -1.83393325415e-07
1.06973657257e-11 -1.86864255625e-07
1.10539295383e-11 -1.54031894795e-07
1.1410493351e-11 -1.05404339479e-07
1.17670571636e-11 -5.81713130998e-08
1.21236209762e-11 -2.23595417737e-08
1.24801847889e-11 -7.44294736954e-10
1.28367486015e-11 8.84140760604e-09
1.31933124142e-11 1.06075859208e-08
1.35498762268e-11 8.59490612015e-09
1.39064400394e-11 5.60092194846e-09
1.42630038521e-11 3.05249270305e-09
1.46195676647e-11 1.37473510353e-09
1.49761314773e-11 4.73918015942e-10
1.533269529e-11 8.09037420391e-11
1.56892591026e-11 -4.229120526e-11
1.60458229152e-11 -5.35740792007e-11
1.64023867279e-11 -3.78386905142e-11
1.67589505405e-11 -4.72136323093e-11
1.71155143532e-11 -4.42768634257e-11
1.74720781658e-11 -4.36475126875e-11
1.78286419784e-11 -4.38901102962e-11
1.81852057911e-11 -4.44754337525e-11
1.85417696037e-11 -4.49992820784e-11
1.88983334163e-11 -4.55046139658e-11
1.9254897229e-11 -4.51758561115e-11
1.96114610416e-11 -4.62995683459e-11
1.99680248543e-11 -4.72144753849e-11
2.03245886669e-11 -4.73161614056e-11
2.06811524795e-11 -4.81969672506e-11
2.10377162922e-11 -4.71763114684e-11
2.13942801048e-11 -4.83422538111e-11
2.17508439174e-11 -4.81012868425e-11
2.21074077301e-11 -4.91744700515e-11
2.24639715427e-11 -4.88305750002e-11
2.28205353553e-11 -4.91540766423e-11
2.3177099168e-11 -4.9826559545e-11
2.35336629806e-11 -4.98093129242e-11
2.38902267933e-11 -5.08619917017e-11
2.42467906059e-11 -5.05435172882e-11
2.46033544185e-11 -5.09798384063e-11
2.49599182312e-11 -5.04457794981e-11
2.53164820438e-11 -5.1642183585e-11

View File

@ -1,74 +1,76 @@
% time-domain current integration by openEMS v0.0.35-108-gc651cce @Wed Mar 12 09:21:07 2025
% start-coordinates: (-3.82975e-05,-5.22e-05,0.00015527) m -> [101,46,39]
% stop-coordinates: (-3.82975e-05,-3.33525e-05,0.00015624) m -> [101,96,42]
% time-domain current integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:44:44 2026
% start-coordinates: (-3.87138e-05,-5.24e-05,0.00015475) m -> [59,27,20]
% stop-coordinates: (-3.87138e-05,-3.33525e-05,0.00015624) m -> [59,63,22]
% t/s current
2.44035880086e-16 0
3.57024492566e-13 -1.85153346648e-12
7.13804949251e-13 1.85802610277e-12
1.07058540594e-12 -1.56450252059e-11
1.42736586262e-12 -4.37425928812e-11
1.78414631931e-12 -1.04018994806e-10
2.14092677599e-12 -1.90848503667e-10
2.49770723268e-12 -2.85282325541e-10
2.85448768937e-12 -3.19724302589e-10
3.21126814605e-12 -1.76934703e-10
3.56804860274e-12 2.86897477997e-10
3.92482905942e-12 1.17880150086e-09
4.28160951611e-12 2.46261855352e-09
4.63838997279e-12 3.84495901784e-09
4.99517042948e-12 4.74569850084e-09
5.35195088616e-12 4.42022152214e-09
5.70873134285e-12 2.25940643972e-09
6.06551179954e-12 -1.82285020411e-09
6.42229225622e-12 -7.09806213806e-09
6.77907271291e-12 -1.2058881893e-08
7.13585316959e-12 -1.4867067577e-08
7.49263362628e-12 -1.41021949673e-08
7.84941408296e-12 -9.46709022287e-09
8.20619453965e-12 -2.076903316e-09
8.56297499634e-12 5.88427750969e-09
8.91975545302e-12 1.2009389927e-08
9.27653590971e-12 1.46270737744e-08
9.63331636639e-12 1.33995206042e-08
9.99009682308e-12 9.31052746012e-09
1.03468772798e-11 4.09730960271e-09
1.07036577364e-11 -5.26094834363e-10
1.10604381931e-11 -3.47829898217e-09
1.14172186498e-11 -4.52040227472e-09
1.17739991065e-11 -4.07889766407e-09
1.21307795632e-11 -2.87260615295e-09
1.24875600199e-11 -1.55973089999e-09
1.28443404766e-11 -5.41975408996e-10
1.32011209332e-11 5.38894068258e-11
1.35579013899e-11 2.8913521577e-10
1.39146818466e-11 3.0020799735e-10
1.42714623033e-11 2.15616594024e-10
1.462824276e-11 1.19486323613e-10
1.49850232167e-11 5.02822991577e-11
1.53418036734e-11 1.42316184878e-11
1.569858413e-11 1.93665439588e-12
1.60553645867e-11 8.11984594146e-13
1.64121450434e-11 2.108849987e-12
1.67689255001e-11 3.83964084485e-12
1.71257059568e-11 1.56705247736e-12
1.74824864135e-11 -2.56012225308e-13
1.78392668702e-11 3.08628123058e-13
1.81960473268e-11 2.1715524344e-12
1.85528277835e-11 3.66803072291e-12
1.89096082402e-11 3.97121441634e-12
1.92663886969e-11 3.02430259655e-12
1.96231691536e-11 1.63394124619e-12
1.99799496103e-11 7.20748981331e-13
2.0336730067e-11 8.24694913054e-13
2.06935105236e-11 1.5455930806e-12
2.10502909803e-11 2.28498209937e-12
2.1407071437e-11 2.38199434135e-12
2.17638518937e-11 1.76252285336e-12
2.21206323504e-11 1.03452663103e-12
2.24774128071e-11 8.04284590317e-13
2.28341932638e-11 8.68875284221e-13
2.31909737204e-11 1.27464141672e-12
2.35477541771e-11 1.49075955573e-12
2.39045346338e-11 1.46420787821e-12
2.42613150905e-11 1.26697675788e-12
2.46180955472e-11 8.24534451133e-13
4.51346598274e-16 0
3.57015159235e-13 1.8316919162e-12
7.13578971872e-13 1.35497976771e-13
1.07014278451e-12 -1.22342483366e-11
1.42670659714e-12 -3.58149794544e-11
1.78327040978e-12 -8.40828309756e-11
2.13983422242e-12 -1.54350227044e-10
2.49639803505e-12 -2.31518637595e-10
2.85296184769e-12 -2.59565702265e-10
3.20952566033e-12 -1.45514350569e-10
3.56608947296e-12 2.28865232321e-10
3.9226532856e-12 9.50191147986e-10
4.27921709824e-12 1.99023841851e-09
4.63578091087e-12 3.1085893859e-09
4.99234472351e-12 3.8422403037e-09
5.34890853615e-12 3.58521745625e-09
5.70547234878e-12 1.8406037805e-09
6.06203616142e-12 -1.45376921612e-09
6.41859997406e-12 -5.71868419286e-09
6.77516378669e-12 -9.72982761027e-09
7.13172759933e-12 -1.20031042883e-08
7.48829141197e-12 -1.13929248258e-08
7.8448552246e-12 -7.66249552697e-09
8.20141903724e-12 -1.71206204769e-09
8.55798284988e-12 4.69401673087e-09
8.91454666251e-12 9.62619051137e-09
9.27111047515e-12 1.17397540578e-08
9.62767428779e-12 1.07718847175e-08
9.98423810042e-12 7.50840190022e-09
1.03408019131e-11 3.34130012547e-09
1.06973657257e-11 -3.64826224786e-10
1.10539295383e-11 -2.74102252007e-09
1.1410493351e-11 -3.59365381897e-09
1.17670571636e-11 -3.25558335845e-09
1.21236209762e-11 -2.30059815642e-09
1.24801847889e-11 -1.25321597544e-09
1.28367486015e-11 -4.40872338636e-10
1.31933124142e-11 3.52089364608e-11
1.35498762268e-11 2.22351081991e-10
1.39064400394e-11 2.32634078667e-10
1.42630038521e-11 1.70648495335e-10
1.46195676647e-11 9.76549674458e-11
1.49761314773e-11 4.416366578e-11
1.533269529e-11 1.35217601005e-11
1.56892591026e-11 1.29806929094e-12
1.60458229152e-11 -1.75986048651e-12
1.64023867279e-11 -5.0669624746e-13
1.67589505405e-11 1.75950313347e-12
1.71155143532e-11 1.13497319182e-12
1.74720781658e-11 9.71026210828e-13
1.78286419784e-11 1.31829182987e-12
1.81852057911e-11 1.92121926007e-12
1.85417696037e-11 1.54893025489e-12
1.88983334163e-11 8.41911609872e-13
1.9254897229e-11 1.14240301247e-12
1.96114610416e-11 8.51651214828e-13
1.99680248543e-11 1.6155384322e-12
2.03245886669e-11 1.62327182945e-12
2.06811524795e-11 1.11821489568e-12
2.10377162922e-11 5.57793394806e-13
2.13942801048e-11 4.22890888974e-13
2.17508439174e-11 1.22384394285e-12
2.21074077301e-11 1.27678336653e-12
2.24639715427e-11 7.67874479279e-13
2.28205353553e-11 4.88481650962e-13
2.3177099168e-11 1.7308420322e-13
2.35336629806e-11 1.17559998195e-12
2.38902267933e-11 8.61242500927e-13
2.42467906059e-11 1.07272047148e-12
2.46033544185e-11 5.60284024037e-13
2.49599182312e-11 9.40843757069e-13
2.53164820438e-11 3.55877653735e-13

View File

@ -1,74 +1,76 @@
% time-domain voltage integration by openEMS v0.0.35-108-gc651cce @Wed Mar 12 09:21:07 2025
% start-coordinates: (-7.246e-05,-4.26269e-05,0.00015727) m -> [26,72,46]
% stop-coordinates: (-7.246e-05,-4.26269e-05,0.00016498) m -> [26,72,74]
% time-domain voltage integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:44:44 2026
% start-coordinates: (-7.246e-05,-4.3075e-05,0.00015727) m -> [12,45,24]
% stop-coordinates: (-7.246e-05,-4.3075e-05,0.00016498) m -> [12,45,34]
% t/s voltage
0 -0
3.56780456686e-13 -2.10754348695e-09
7.13560913371e-13 -5.47368654569e-09
1.07034137006e-12 -5.86161444383e-09
1.42712182674e-12 1.27007337286e-09
1.78390228343e-12 2.75393003402e-08
2.14068274011e-12 9.08163118041e-08
2.4974631968e-12 2.10898607467e-07
2.85424365349e-12 3.94789232416e-07
3.21102411017e-12 6.10324175199e-07
3.56780456686e-12 7.52324206488e-07
3.92458502354e-12 6.19245776434e-07
4.28136548023e-12 -7.09431007273e-08
4.63814593691e-12 -1.59578689818e-06
4.9949263936e-12 -4.06777060391e-06
5.35170685028e-12 -7.23937191083e-06
5.70848730697e-12 -1.03686384705e-05
6.06526776366e-12 -1.22654348331e-05
6.42204822034e-12 -1.1595585562e-05
6.77882867703e-12 -7.40260010446e-06
7.13560913371e-12 3.39471466937e-07
7.4923895904e-12 1.04177710796e-05
7.84917004708e-12 2.05447911981e-05
8.20595050377e-12 2.80263420791e-05
8.56273096046e-12 3.07058960516e-05
8.91951141714e-12 2.77830721984e-05
9.27629187383e-12 2.01279503358e-05
9.63307233051e-12 9.94105752739e-06
9.9898527872e-12 -7.93476578331e-08
1.03466332439e-11 -7.6790206549e-06
1.07034137006e-11 -1.16987820888e-05
1.10601941573e-11 -1.22167833752e-05
1.14169746139e-11 -1.02230825405e-05
1.17737550706e-11 -7.06031438824e-06
1.21305355273e-11 -3.90610055945e-06
1.2487315984e-11 -1.47950616736e-06
1.28440964407e-11 -5.52418593161e-09
1.32008768974e-11 6.43570073677e-07
1.35576573541e-11 7.51234031426e-07
1.39144378107e-11 5.98224691117e-07
1.42712182674e-11 3.81314437803e-07
1.46279987241e-11 2.00550324791e-07
1.49847791808e-11 8.45365184521e-08
1.53415596375e-11 2.45309043079e-08
1.56983400942e-11 4.39572810443e-10
1.60551205509e-11 -5.4776720243e-09
1.64119010075e-11 -4.49878891084e-09
1.67686814642e-11 -2.5171057183e-09
1.71254619209e-11 -2.2948547021e-09
1.74822423776e-11 -2.44449660514e-09
1.78390228343e-11 -2.63038428538e-09
1.8195803291e-11 -2.7074708378e-09
1.85525837477e-11 -2.66825807282e-09
1.89093642043e-11 -2.57319329733e-09
1.9266144661e-11 -2.5206294621e-09
1.96229251177e-11 -2.54545631795e-09
1.99797055744e-11 -2.6365049588e-09
2.03364860311e-11 -2.73448288318e-09
2.06932664878e-11 -2.78721048325e-09
2.10500469445e-11 -2.78978875418e-09
2.14068274011e-11 -2.75800481758e-09
2.17636078578e-11 -2.74553423052e-09
2.21203883145e-11 -2.77622103778e-09
2.24771687712e-11 -2.83825040553e-09
2.28339492279e-11 -2.89657950403e-09
2.31907296846e-11 -2.92972297811e-09
2.35475101413e-11 -2.93223589853e-09
2.39042905979e-11 -2.92255690482e-09
2.42610710546e-11 -2.92398806556e-09
2.46178515113e-11 -2.94506767584e-09
3.56563812637e-13 -1.69238605074e-09
7.13127625273e-13 -4.3926460247e-09
1.06969143791e-12 -4.68814248533e-09
1.42625525055e-12 1.04028585746e-09
1.78281906318e-12 2.2028847857e-08
2.13938287582e-12 7.27867783823e-08
2.49594668846e-12 1.68909938481e-07
2.85251050109e-12 3.1615037166e-07
3.20907431373e-12 4.88803781451e-07
3.56563812637e-12 6.02911395475e-07
3.922201939e-12 4.97371491548e-07
4.27876575164e-12 -5.32954449461e-08
4.63532956428e-12 -1.27140587125e-06
4.99189337691e-12 -3.24810889651e-06
5.34845718955e-12 -5.7870576029e-06
5.70502100219e-12 -8.29721898299e-06
6.06158481482e-12 -9.82806091088e-06
6.41814862746e-12 -9.31099094714e-06
6.7747124401e-12 -5.97604926611e-06
7.13127625273e-12 2.05541414111e-07
7.48784006537e-12 8.27234049439e-06
7.84440387801e-12 1.63995615594e-05
8.20096769064e-12 2.2429302021e-05
8.55753150328e-12 2.46254163585e-05
8.91409531592e-12 2.23314696086e-05
9.27065912855e-12 1.62287883541e-05
9.62722294119e-12 8.07080112963e-06
9.98378675383e-12 1.97826403037e-08
1.03403505665e-11 -6.10837062709e-06
1.06969143791e-11 -9.3707080282e-06
1.10534781917e-11 -9.81755090379e-06
1.14100420044e-11 -8.23551920348e-06
1.1766605817e-11 -5.70092916519e-06
1.21231696296e-11 -3.16261102284e-06
1.24797334423e-11 -1.20354791022e-06
1.28362972549e-11 -9.52817494349e-09
1.31928610676e-11 5.18805084226e-07
1.35494248802e-11 6.08328253549e-07
1.39059886928e-11 4.85462948063e-07
1.42625525055e-11 3.09820874733e-07
1.46191163181e-11 1.63113493379e-07
1.49756801307e-11 6.89404862086e-08
1.53322439434e-11 2.01635043107e-08
1.5688807756e-11 5.79136263251e-10
1.60453715686e-11 -4.38993072449e-09
1.64019353813e-11 -3.7187053159e-09
1.67584991939e-11 -2.13211816258e-09
1.71150630066e-11 -1.93969239282e-09
1.74716268192e-11 -1.97210678343e-09
1.78281906318e-11 -2.03674088706e-09
1.81847544445e-11 -2.07732511748e-09
1.85413182571e-11 -2.04997813169e-09
1.88978820697e-11 -2.05876252157e-09
1.92544458824e-11 -2.08384590139e-09
1.9611009695e-11 -2.15351327049e-09
1.99675735077e-11 -2.14929406217e-09
2.03241373203e-11 -2.17532276914e-09
2.06807011329e-11 -2.17451057161e-09
2.10372649456e-11 -2.19699627935e-09
2.13938287582e-11 -2.23028039092e-09
2.17503925708e-11 -2.28223039078e-09
2.21069563835e-11 -2.27871833902e-09
2.24635201961e-11 -2.27036345279e-09
2.28200840087e-11 -2.3138523042e-09
2.31766478214e-11 -2.32037948578e-09
2.3533211634e-11 -2.35201379206e-09
2.38897754467e-11 -2.3690343437e-09
2.42463392593e-11 -2.35360535228e-09
2.46029030719e-11 -2.35934158321e-09
2.49594668846e-11 -2.39511951938e-09
2.53160306972e-11 -2.41851981497e-09

View File

@ -1,74 +1,76 @@
% time-domain voltage integration by openEMS v0.0.35-108-gc651cce @Wed Mar 12 09:21:07 2025
% start-coordinates: (-1.244e-05,-4.26269e-05,0.00015727) m -> [157,72,46]
% stop-coordinates: (-1.244e-05,-4.26269e-05,0.00016498) m -> [157,72,74]
% time-domain voltage integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:44:44 2026
% start-coordinates: (-1.244e-05,-4.2175e-05,0.00015727) m -> [95,46,24]
% stop-coordinates: (-1.244e-05,-4.2175e-05,0.00016498) m -> [95,46,34]
% t/s voltage
0 -0
3.56780456686e-13 7.97687304665e-11
7.13560913371e-13 -1.50164938643e-10
1.07034137006e-12 -3.17255855918e-11
1.42712182674e-12 1.39358837838e-10
1.78390228343e-12 5.48549887805e-10
2.14068274011e-12 1.40373643265e-09
2.4974631968e-12 2.77532199999e-09
2.85424365349e-12 4.38477673614e-09
3.21102411017e-12 5.26068742734e-09
3.56780456686e-12 3.60327686438e-09
3.92458502354e-12 -3.0674087298e-09
4.28136548023e-12 -1.68002099454e-08
4.63814593691e-12 -3.73479346338e-08
4.9949263936e-12 -6.02464036437e-08
5.35170685028e-12 -7.57237306193e-08
5.70848730697e-12 -7.0706752453e-08
6.06526776366e-12 -3.3996243598e-08
6.42204822034e-12 3.65320353968e-08
6.77882867703e-12 1.28084658435e-07
7.13560913371e-12 2.13034081931e-07
7.4923895904e-12 2.57172152018e-07
7.84917004708e-12 2.34034198243e-07
8.20595050377e-12 1.38958505591e-07
8.56273096046e-12 -4.92476050218e-09
8.91951141714e-12 -1.53619518439e-07
9.27629187383e-12 -2.59662786384e-07
9.63307233051e-12 -2.91803427643e-07
9.9898527872e-12 -2.47147832866e-07
1.03466332439e-11 -1.49893493173e-07
1.07034137006e-11 -3.84212558435e-08
1.10601941573e-11 5.18294971386e-08
1.14169746139e-11 1.01053694079e-07
1.17737550706e-11 1.08418830136e-07
1.21305355273e-11 8.67856837505e-08
1.2487315984e-11 5.35612093566e-08
1.28440964407e-11 2.28826031456e-08
1.32008768974e-11 1.9594722997e-09
1.35576573541e-11 -8.32008112406e-09
1.39144378107e-11 -1.07006616346e-08
1.42712182674e-11 -8.83996634227e-09
1.46279987241e-11 -5.60732275889e-09
1.49847791808e-11 -2.6701529876e-09
1.53415596375e-11 -7.02054749405e-10
1.56983400942e-11 2.46173172992e-10
1.60551205509e-11 4.47127217196e-10
1.64119010075e-11 2.82607734957e-10
1.67686814642e-11 8.56058238619e-11
1.71254619209e-11 -3.86224908392e-11
1.74822423776e-11 6.75239918233e-11
1.78390228343e-11 2.1172983939e-10
1.8195803291e-11 2.57328429398e-10
1.85525837477e-11 1.86242348366e-10
1.89093642043e-11 5.8992579593e-11
1.9266144661e-11 -4.05920108724e-11
1.96229251177e-11 -4.77655269938e-11
1.99797055744e-11 1.03004077164e-11
2.03364860311e-11 7.57269800252e-11
2.06932664878e-11 1.00777386436e-10
2.10500469445e-11 7.21189991407e-11
2.14068274011e-11 1.46234367389e-11
2.17636078578e-11 -2.36781241315e-11
2.21203883145e-11 -2.06346080088e-11
2.24771687712e-11 1.70009013378e-11
2.28339492279e-11 5.42220985993e-11
2.31907296846e-11 6.69798953714e-11
2.35475101413e-11 4.93246038631e-11
2.39042905979e-11 2.0023599044e-11
2.42610710546e-11 5.7246018364e-12
2.46178515113e-11 9.75079861147e-12
3.56563812637e-13 6.40150645166e-11
7.13127625273e-13 -1.33878626934e-10
1.06969143791e-12 -4.4032750265e-13
1.42625525055e-12 1.244543869e-10
1.78281906318e-12 4.61803949248e-10
2.13938287582e-12 1.15728283206e-09
2.49594668846e-12 2.38843407552e-09
2.85251050109e-12 3.82343201544e-09
3.20907431373e-12 4.73456826522e-09
3.56563812637e-12 3.52912429835e-09
3.922201939e-12 -2.04338426735e-09
4.27876575164e-12 -1.38269571348e-08
4.63532956428e-12 -3.18928667919e-08
4.99189337691e-12 -5.24778431821e-08
5.34845718955e-12 -6.73077806823e-08
5.70502100219e-12 -6.45968021296e-08
6.06158481482e-12 -3.40346324457e-08
6.41814862746e-12 2.69966212718e-08
6.7747124401e-12 1.08177474534e-07
7.13127625273e-12 1.85297811761e-07
7.48784006537e-12 2.27879104031e-07
7.84440387801e-12 2.11439218134e-07
8.20096769064e-12 1.3059090076e-07
8.55753150328e-12 4.82896675424e-09
8.91409531592e-12 -1.27371359682e-07
9.27065912855e-12 -2.23686881462e-07
9.62722294119e-12 -2.55898656931e-07
9.98378675383e-12 -2.20327947886e-07
1.03403505665e-11 -1.37513645804e-07
1.06969143791e-11 -4.0744777996e-08
1.10534781917e-11 3.91471104422e-08
1.14100420044e-11 8.42820218061e-08
1.1766605817e-11 9.31764008172e-08
1.21231696296e-11 7.63650711555e-08
1.24797334423e-11 4.85344915369e-08
1.28362972549e-11 2.20597186074e-08
1.31928610676e-11 3.52819316818e-09
1.35494248802e-11 -5.79650002996e-09
1.39059886928e-11 -8.13560308011e-09
1.42625525055e-11 -6.78251937947e-09
1.46191163181e-11 -4.32842922615e-09
1.49756801307e-11 -2.21981416582e-09
1.53322439434e-11 -8.26416473448e-10
1.5688807756e-11 -1.14998726687e-10
1.60453715686e-11 1.27219366118e-10
1.64019353813e-11 1.63509763021e-10
1.67584991939e-11 1.07460036963e-10
1.71150630066e-11 -5.07347007627e-12
1.74716268192e-11 2.75347334993e-11
1.78281906318e-11 7.37196887736e-11
1.81847544445e-11 5.21818315554e-11
1.85413182571e-11 3.74570617578e-11
1.88978820697e-11 2.29819292936e-11
1.92544458824e-11 2.99865499185e-11
1.9611009695e-11 5.7106924441e-11
1.99675735077e-11 5.40139521651e-11
2.03241373203e-11 5.51595164943e-11
2.06807011329e-11 3.7516656665e-11
2.10372649456e-11 1.27145180235e-11
2.13938287582e-11 5.81715561138e-11
2.17503925708e-11 4.54956762368e-11
2.21069563835e-11 2.84556899528e-11
2.24635201961e-11 1.89128006875e-11
2.28200840087e-11 3.72286359048e-12
2.31766478214e-11 4.89821692321e-11
2.3533211634e-11 3.62992192728e-11
2.38897754467e-11 3.66032761826e-11
2.42463392593e-11 2.96428995309e-12
2.46029030719e-11 1.60558746203e-11
2.49594668846e-11 2.09750409316e-11
2.53160306972e-11 2.57509910747e-11

View File

@ -1,74 +1,76 @@
% time-domain voltage integration by openEMS v0.0.35-108-gc651cce @Wed Mar 12 09:21:07 2025
% start-coordinates: (-4.4935e-05,-4.26269e-05,0.000155995) m -> [87,72,41]
% stop-coordinates: (-4.8335e-05,-4.26269e-05,0.000155995) m -> [77,72,41]
% time-domain voltage integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:44:44 2026
% start-coordinates: (-4.4935e-05,-4.3075e-05,0.00015575) m -> [49,45,21]
% stop-coordinates: (-4.8335e-05,-4.3075e-05,0.00015575) m -> [45,45,21]
% t/s voltage
0 -0
3.56780456686e-13 -5.28549171097e-09
7.13560913371e-13 -6.79353506783e-09
1.07034137006e-12 -6.07506236289e-10
1.42712182674e-12 2.31858852118e-08
1.78390228343e-12 8.32850184374e-08
2.14068274011e-12 2.00660583261e-07
2.4974631968e-12 3.86208881764e-07
2.85424365349e-12 6.13396334614e-07
3.21102411017e-12 7.83259842763e-07
3.56780456686e-12 6.95998984668e-07
3.92458502354e-12 6.09617547553e-08
4.28136548023e-12 -1.42385799506e-06
4.63814593691e-12 -3.90977072584e-06
4.9949263936e-12 -7.18967402236e-06
5.35170685028e-12 -1.05397670609e-05
5.70848730697e-12 -1.2739754311e-05
6.06526776366e-12 -1.23652005186e-05
6.42204822034e-12 -8.3268919866e-06
6.77882867703e-12 -4.74187014987e-07
7.13560913371e-12 1.00307902926e-05
7.4923895904e-12 2.08298570215e-05
7.84917004708e-12 2.90398570542e-05
8.20595050377e-12 3.2261203387e-05
8.56273096046e-12 2.94965211651e-05
8.91951141714e-12 2.15529489651e-05
9.27629187383e-12 1.07315871105e-05
9.63307233051e-12 -5.03213464231e-08
9.9898527872e-12 -8.29655868984e-06
1.03466332439e-11 -1.26795603137e-05
1.07034137006e-11 -1.3234867879e-05
1.10601941573e-11 -1.10262667476e-05
1.14169746139e-11 -7.53169769041e-06
1.17737550706e-11 -4.06003087505e-06
1.21305355273e-11 -1.41226686878e-06
1.2487315984e-11 1.65279513631e-07
1.28440964407e-11 8.24025796931e-07
1.32008768974e-11 8.89535677118e-07
1.35576573541e-11 6.80650384055e-07
1.39144378107e-11 4.17396357477e-07
1.42712182674e-11 2.07879633507e-07
1.46279987241e-11 7.88331826485e-08
1.49847791808e-11 1.57339454798e-08
1.53415596375e-11 -6.96541635481e-09
1.56983400942e-11 -1.0533140693e-08
1.60551205509e-11 -7.76366110289e-09
1.64119010075e-11 -4.63356630842e-09
1.67686814642e-11 -4.05855921093e-09
1.71254619209e-11 -4.31381264043e-09
1.74822423776e-11 -4.41539937945e-09
1.78390228343e-11 -4.35032693202e-09
1.8195803291e-11 -4.23261148352e-09
1.85525837477e-11 -4.11713263482e-09
1.89093642043e-11 -4.07667954949e-09
1.9266144661e-11 -4.10542561058e-09
1.96229251177e-11 -4.14881895505e-09
1.99797055744e-11 -4.16321782604e-09
2.03364860311e-11 -4.13682060829e-09
2.06932664878e-11 -4.07104050471e-09
2.10500469445e-11 -4.01259819816e-09
2.14068274011e-11 -3.99033994736e-09
2.17636078578e-11 -3.9911625116e-09
2.21203883145e-11 -4.00619082352e-09
2.24771687712e-11 -3.99995020439e-09
2.28339492279e-11 -3.96885435627e-09
2.31907296846e-11 -3.92324744913e-09
2.35475101413e-11 -3.88931095663e-09
2.39042905979e-11 -3.87099000076e-09
2.42610710546e-11 -3.86512402639e-09
2.46178515113e-11 -3.86684650966e-09
3.56563812637e-13 -4.11997025385e-09
7.13127625273e-13 -5.39374050978e-09
1.06969143791e-12 -5.84462866993e-10
1.42625525055e-12 1.81085437756e-08
1.78281906318e-12 6.52647056398e-08
2.13938287582e-12 1.57987134486e-07
2.49594668846e-12 3.04823917219e-07
2.85251050109e-12 4.85618883772e-07
3.20907431373e-12 6.22985325549e-07
3.56563812637e-12 5.59818545298e-07
3.922201939e-12 6.603348357e-08
4.27876575164e-12 -1.09949169769e-06
4.63532956428e-12 -3.06196110955e-06
4.99189337691e-12 -5.66543957348e-06
5.34845718955e-12 -8.34573279462e-06
5.70502100219e-12 -1.01412487084e-05
6.06158481482e-12 -9.9186497664e-06
6.41814862746e-12 -6.79672621118e-06
6.7747124401e-12 -6.27081199411e-07
7.13127625273e-12 7.70060046307e-06
7.48784006537e-12 1.63372733368e-05
7.84440387801e-12 2.29932477396e-05
8.20096769064e-12 2.57343406247e-05
8.55753150328e-12 2.37185986407e-05
8.91409531592e-12 1.7533779328e-05
9.27065912855e-12 8.9717497076e-06
9.62722294119e-12 3.44432977695e-07
9.98378675383e-12 -6.33924128124e-06
1.03403505665e-11 -9.97988161089e-06
1.06969143791e-11 -1.05607581418e-05
1.10534781917e-11 -8.89669695425e-06
1.14100420044e-11 -6.15363148881e-06
1.1766605817e-11 -3.38206081096e-06
1.21231696296e-11 -1.23849119404e-06
1.24797334423e-11 6.10166610571e-08
1.28362972549e-11 6.22756736846e-07
1.31928610676e-11 6.9964453786e-07
1.35494248802e-11 5.45892582693e-07
1.39059886928e-11 3.4024674278e-07
1.42625525055e-11 1.72798856113e-07
1.46191163181e-11 6.7926951175e-08
1.49756801307e-11 1.54868415869e-08
1.53322439434e-11 -4.13018080847e-09
1.5688807756e-11 -7.93954113565e-09
1.60453715686e-11 -6.2006009216e-09
1.64019353813e-11 -3.74646014212e-09
1.67584991939e-11 -3.24010934749e-09
1.71150630066e-11 -3.36704741866e-09
1.74716268192e-11 -3.42296779809e-09
1.78281906318e-11 -3.41171951801e-09
1.81847544445e-11 -3.38992750537e-09
1.85413182571e-11 -3.35186550737e-09
1.88978820697e-11 -3.32284588733e-09
1.92544458824e-11 -3.34583449835e-09
1.9611009695e-11 -3.29100818819e-09
1.99675735077e-11 -3.25012139424e-09
2.03241373203e-11 -3.25159843495e-09
2.06807011329e-11 -3.20244936125e-09
2.10372649456e-11 -3.25613974672e-09
2.13938287582e-11 -3.18761672613e-09
2.17503925708e-11 -3.20870563453e-09
2.21069563835e-11 -3.1429641667e-09
2.24635201961e-11 -3.17242621062e-09
2.28200840087e-11 -3.14518200373e-09
2.31766478214e-11 -3.10988956809e-09
2.3533211634e-11 -3.1229554498e-09
2.38897754467e-11 -3.06426506391e-09
2.42463392593e-11 -3.08316422393e-09
2.46029030719e-11 -3.05852321247e-09
2.49594668846e-11 -3.07592196158e-09
2.53160306972e-11 -3.02824332277e-09

View File

@ -1,74 +1,76 @@
% time-domain voltage integration by openEMS v0.0.35-108-gc651cce @Wed Mar 12 09:21:07 2025
% start-coordinates: (-3.993e-05,-4.26269e-05,0.000155995) m -> [97,72,41]
% stop-coordinates: (-3.6065e-05,-4.26269e-05,0.000155995) m -> [107,72,41]
% time-domain voltage integration by openEMS v0.0.36-88-g332ca7d @Sun Jan 18 11:44:44 2026
% start-coordinates: (-3.993e-05,-4.3075e-05,0.00015575) m -> [57,45,21]
% stop-coordinates: (-3.6065e-05,-4.3075e-05,0.00015575) m -> [63,45,21]
% t/s voltage
0 -0
3.56780456686e-13 8.74598183589e-11
7.13560913371e-13 -8.51178077674e-11
1.07034137006e-12 8.71622732324e-10
1.42712182674e-12 2.40805013429e-09
1.78390228343e-12 5.65981606027e-09
2.14068274011e-12 1.03953761155e-08
2.4974631968e-12 1.55511615807e-08
2.85424365349e-12 1.73564396189e-08
3.21102411017e-12 9.63127988474e-09
3.56780456686e-12 -1.56116395367e-08
3.92458502354e-12 -6.41284487735e-08
4.28136548023e-12 -1.3393244469e-07
4.63814593691e-12 -2.09122989148e-07
4.9949263936e-12 -2.58171278134e-07
5.35170685028e-12 -2.40705881893e-07
5.70848730697e-12 -1.23582257316e-07
6.06526776366e-12 9.79324217276e-08
6.42204822034e-12 3.84447348623e-07
6.77882867703e-12 6.54277933165e-07
7.13560913371e-12 8.07852444495e-07
7.4923895904e-12 7.67936175095e-07
7.84917004708e-12 5.18081176182e-07
8.20595050377e-12 1.18149988904e-07
8.56273096046e-12 -3.13920317296e-07
8.91951141714e-12 -6.47850228574e-07
9.27629187383e-12 -7.92676608796e-07
9.63307233051e-12 -7.29366721686e-07
9.9898527872e-12 -5.10267767595e-07
1.03466332439e-11 -2.28792021773e-07
1.07034137006e-11 2.23457432835e-08
1.10601941573e-11 1.84157618044e-07
1.14169746139e-11 2.42975870535e-07
1.17737550706e-11 2.21138185097e-07
1.21305355273e-11 1.5715650914e-07
1.2487315984e-11 8.65254374816e-08
1.28440964407e-11 3.12195889141e-08
1.32008768974e-11 -1.56839225808e-09
1.35576573541e-11 -1.4882464594e-08
1.39144378107e-11 -1.59395235899e-08
1.42712182674e-11 -1.16512800519e-08
1.46279987241e-11 -6.57938398207e-09
1.49847791808e-11 -2.87208375138e-09
1.53415596375e-11 -9.02698634592e-10
1.56983400942e-11 -1.93440508403e-10
1.60551205509e-11 -1.00659843091e-10
1.64119010075e-11 -1.38661207516e-10
1.67686814642e-11 -2.30206029586e-10
1.71254619209e-11 -1.11638709561e-10
1.74822423776e-11 -1.94203350233e-11
1.78390228343e-11 -5.57765795356e-11
1.8195803291e-11 -1.51771960451e-10
1.85525837477e-11 -2.20151579258e-10
1.89093642043e-11 -2.38358019086e-10
1.9266144661e-11 -1.8579013935e-10
1.96229251177e-11 -1.11102777152e-10
1.99797055744e-11 -6.04532591521e-11
2.03364860311e-11 -6.78408496914e-11
2.06932664878e-11 -1.11631342191e-10
2.10500469445e-11 -1.43437704422e-10
2.14068274011e-11 -1.46526290233e-10
2.17636078578e-11 -1.0768364412e-10
2.21203883145e-11 -7.3913105237e-11
2.24771687712e-11 -5.81033073217e-11
2.28339492279e-11 -7.15238324296e-11
2.31907296846e-11 -8.47337083311e-11
2.35475101413e-11 -9.43238143841e-11
2.39042905979e-11 -9.64769574993e-11
2.42610710546e-11 -7.77963687394e-11
2.46178515113e-11 -5.78812982786e-11
3.56563812637e-13 -5.46220538418e-11
7.13127625273e-13 3.577647293e-12
1.06969143791e-12 6.6629118195e-10
1.42625525055e-12 1.87773439853e-09
1.78281906318e-12 4.43088088442e-09
2.13938287582e-12 8.13648937115e-09
2.49594668846e-12 1.2288194462e-08
2.85251050109e-12 1.38716675924e-08
3.20907431373e-12 7.90402343576e-09
3.56563812637e-12 -1.18351000111e-08
3.922201939e-12 -5.0152978659e-08
4.27876575164e-12 -1.05457921507e-07
4.63532956428e-12 -1.6522244195e-07
4.99189337691e-12 -2.04939397008e-07
5.34845718955e-12 -1.92221948581e-07
5.70502100219e-12 -1.00445049611e-07
6.06158481482e-12 7.40667207566e-08
6.41814862746e-12 3.01094782884e-07
6.7747124401e-12 5.15857436767e-07
7.13127625273e-12 6.39326721341e-07
7.48784006537e-12 6.10112437016e-07
7.84440387801e-12 4.14529985449e-07
8.20096769064e-12 9.94568187807e-08
8.55753150328e-12 -2.4200577009e-07
8.91409531592e-12 -5.07133290029e-07
9.27065912855e-12 -6.23690027624e-07
9.62722294119e-12 -5.76338678115e-07
9.98378675383e-12 -4.05666813919e-07
1.03403505665e-11 -1.85040354594e-07
1.06969143791e-11 1.29508026525e-08
1.10534781917e-11 1.41417732635e-07
1.14100420044e-11 1.89193725575e-07
1.1766605817e-11 1.73222737487e-07
1.21231696296e-11 1.23701275889e-07
1.24797334423e-11 6.83777789945e-08
1.28362972549e-11 2.49981140232e-08
1.31928610676e-11 -7.87698531401e-10
1.35494248802e-11 -1.12059046486e-08
1.39059886928e-11 -1.21235964601e-08
1.42625525055e-11 -9.00049956787e-09
1.46191163181e-11 -5.23279064524e-09
1.49756801307e-11 -2.39537309432e-09
1.53322439434e-11 -7.78871897533e-10
1.5688807756e-11 -1.00200777363e-10
1.60453715686e-11 6.76631251029e-11
1.64019353813e-11 8.32842432172e-12
1.67584991939e-11 -9.77953803008e-11
1.71150630066e-11 -6.92538821429e-11
1.74716268192e-11 -7.19801006993e-11
1.78281906318e-11 -8.49361232388e-11
1.81847544445e-11 -1.16146703366e-10
1.85413182571e-11 -9.73592812273e-11
1.88978820697e-11 -5.58146476086e-11
1.92544458824e-11 -7.40406772351e-11
1.9611009695e-11 -5.63174051664e-11
1.99675735077e-11 -9.39921482659e-11
2.03241373203e-11 -9.27928359151e-11
2.06807011329e-11 -7.49931375679e-11
2.10372649456e-11 -2.83652842425e-11
2.13938287582e-11 -3.88439167984e-11
2.17503925708e-11 -5.56339865669e-11
2.21069563835e-11 -7.09110873319e-11
2.24635201961e-11 -4.57555568954e-11
2.28200840087e-11 -2.93613646851e-11
2.31766478214e-11 -2.40343359364e-11
2.3533211634e-11 -7.37783566879e-11
2.38897754467e-11 -5.2214824478e-11
2.42463392593e-11 -6.57467981967e-11
2.46029030719e-11 -3.57222424384e-11
2.49594668846e-11 -4.66615847523e-11
2.53160306972e-11 -2.47950193363e-11

View File

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<ContinuousStructure CoordSystem="0">
<RectilinearGrid DeltaUnit="1e-06" CoordSystem="0">
<XLines Qty="184">-174.41,-164.736382140038,-155.062764280076,-145.389146420114,-135.715528560152,-126.041910700189,-116.368292840227,-106.694674980265,-99.1872172194175,-93.3608632278889,-88.839172674845,-85.3299994445171,-82.6066160957472,-80.4930650176021,-78.8527898202283,-77.5798124358914,-76.5918858833056,-75.8251802958279,-75.2301588781618,-74.7683773374192,-74.41,-74.11,-73.81,-73.435,-73.06,-72.76,-72.46,-71.96,-71.66,-71.36,-71.0509628757904,-70.649214614318,-70.1269418744038,-69.4479873125154,-68.5653463820604,-67.4179131724689,-65.92625,-64.4345868275311,-63.2871536179396,-62.4045126874847,-61.7255581255962,-61.203285385682,-60.8015371242096,-60.4925,-60.1925,-59.8925,-59.5952475071225,-59.30349002849,-59.008985042735,-58.7144800569801,-58.4199750712251,-58.1254700854701,-57.8309650997151,-57.5364601139601,-57.2419551282051,-56.9474501424501,-56.6529451566952,-56.3584401709402,-56.0639351851852,-55.6681873219373,-55.255,-54.8583742877493,-54.4460398860399,-54.1515349002849,-53.8570299145299,-53.5625249287749,-53.26801994302,-52.973514957265,-52.67900997151,-52.3849376780627,-52.09,-51.79,-51.265,-50.665,-49.765,-49.165,-48.6375,-48.335,-48.0375,-47.7375,-47.33625,-46.935,-46.635,-46.335,-45.935,-45.535,-45.235,-44.935,-44.695,-44.395,-44.095,-43.611875,-43.12875,-42.1625,-41.19625,-40.713125,-40.23,-39.93,-39.63,-39.33,-38.81375,-38.2975,-37.9975,-37.6975,-37.18125,-36.665,-36.365,-36.065,-35.765,-35.24,-34.64,-33.74,-33.14,-32.6125,-32.3125,-32.0140438034188,-31.7211752136752,-31.4267628205128,-31.1323504273504,-30.837938034188,-30.5435256410256,-30.2491132478632,-29.9547008547009,-29.5425053418803,-29.145,-28.7329700854701,-28.3373611111111,-28.0429487179487,-27.7485363247863,-27.4541239316239,-27.1597115384615,-26.8652991452991,-26.5708867521368,-26.2764743589744,-25.982061965812,-25.6876495726496,-25.3932371794872,-25.0988247863248,-24.8072061965812,-24.51,-24.21,-23.91,-23.6008917837444,-23.199051102612,-22.67665821714,-21.9975474660264,-21.1147034895787,-19.9670063201966,-18.475,-16.9829936798034,-15.8352965104213,-14.9524525339736,-14.27334178286,-13.750948897388,-13.3491082162556,-13.04,-12.74,-12.44,-11.94,-11.64,-11.34,-10.59,-10.29,-9.99,-9.6316226625808,-9.16984112183822,-8.5748197041721,-7.80811411669436,-6.82018756410861,-5.54721017977163,-3.90693498239781,-1.79338390425274,0.929999444517197,4.43917267484511,8.96086322788899,14.7872172194176,22.2946749802653,31.9682928402274,41.6419107001895,51.3155285601516,60.9891464201137,70.6627642800758,80.3363821400379,90.01</XLines>
<YLines Qty="143">-163.9,-154.239642358032,-144.579284716064,-134.918927074096,-125.258569432128,-115.59821179016,-105.937854148192,-96.2774965062235,-88.7893246873739,-82.9849104755217,-78.4856514897781,-74.9980762268929,-72.2947019039591,-70.1991965229937,-68.5748773288654,-67.315795453734,-66.3398252293996,-65.58330740669,-64.9968968771397,-64.5423440578343,-64.19,-63.895,-63.595,-63.295,-62.7025,-62.11,-61.5175,-60.925,-60.625,-60.325,-60.025,-59.725,-58.9925,-58.26,-57.5275,-56.795,-56.495,-56.195,-55.895,-55.595,-55.208125,-54.82125,-54.0475,-53.27375,-52.886875,-52.5,-52.2,-51.9,-51.5875480769231,-51.235,-50.915,-50.4052884615385,-50.015,-49.6583653846154,-49.3594230769231,-48.955,-48.6116346153846,-48.3126923076923,-48.055,-47.5657692307692,-47.2668269230769,-46.995,-46.5190384615385,-46.095,-45.7721153846154,-45.4731730769231,-45.035,-44.7253846153846,-44.4269711538462,-44.1275,-43.78,-43.075,-42.626875,-42.175,-41.4275,-41.1275,-40.7580430911681,-40.215,-39.9533262108262,-39.6597827635328,-39.155,-38.6337820512821,-38.255,-37.8985220797721,-37.6049786324786,-37.195,-36.8725213675214,-36.5789779202279,-36.295,-35.843717948718,-35.5501745014245,-35.235,-34.8177172364672,-34.335,-34.015,-33.6503365384615,-33.3525,-33.03875,-32.73875,-32.35453125,-31.9703125,-31.201875,-30.4334375,-30.04921875,-29.665,-29.365,-29.065,-28.765,-28.465,-27.7325,-27,-26.2675,-25.535,-25.235,-24.935,-24.635,-24.335,-23.74125,-23.1475,-22.55375,-21.96,-21.66,-21.36,-21.0016226625808,-20.5398411218382,-19.9448197041721,-19.1781141166944,-18.1901875641086,-16.9172101797716,-15.2769349823978,-13.1633839042527,-10.4400005554828,-6.93082732515489,-2.409136772111,3.41721721941757,10.9246749802653,20.5982928402274,30.2719107001895,39.9455285601516,49.6191464201137,59.2927642800758,68.9663821400379,78.64</YLines>
<ZLines Qty="113">0,11.3218316189194,22.6436632378389,33.0780198021099,43.512376366381,53.9467329306521,64.3810894949232,74.8154460591942,85.2498026234653,95.6841591877364,106.118515752007,116.552872316279,124.617594089445,130.82122622265,135.5932509405,139.264039185,142.08772245,144.2597865,145.930605,147.21585,148.2045,148.965,149.55,150,150.288461538462,150.576923076923,150.865384615385,151.153846153846,151.442307692308,151.730769230769,152.019230769231,152.307692307692,152.596153846154,152.884615384615,153.173076923077,153.461538461538,153.75,154.27,154.79,155.27,155.75,155.995,156.24,156.51,156.78,157.025,157.27,157.54,157.81,158.055,158.3,158.57,158.84,159.085,159.33,159.613433333333,159.896866666667,160.1803,160.466014285714,160.751728571429,161.037442857143,161.323157142857,161.608871428571,161.894585714286,162.1803,162.4603,162.7403,163.0203,163.3003,163.5803,163.8603,164.1403,164.4203,164.7003,164.9803,165.2803,165.5803,165.8803,166.1803,166.4803,166.7803,167.0803,167.3803,167.6803,167.9803,168.7303,169.1053,169.4803,169.6803,169.8803,170.3303,170.9153,171.6758,172.66445,173.949695,175.6205135,177.79257755,180.616260815,184.2870490595,189.05907377735,195.262705910555,203.327427683721,213.761784247993,224.196140812264,234.630497376535,245.064853940806,255.499210505077,265.933567069348,276.367923633619,286.80228019789,297.236636762161,308.558468381081,319.8803</ZLines>
<XLines Qty="109">-94.41,-89.314071377464,-85.3941262832055,-82.3787839030067,-80.0592897643922,-78.2750635039195,-76.9025817650944,-75.8468265813827,-75.0347072092968,-74.41,-73.91,-72.96,-72.46,-71.96,-71.46,-70.96,-70.33078125,-69.7015625,-68.443125,-65.92625,-63.409375,-62.1509375,-61.52171875,-60.8925,-60.3925,-59.8925,-59.398671875,-58.9171875,-58.42953125,-57.941875,-57.45421875,-56.9665625,-56.47890625,-55.81546875,-55.255,-54.58125,-54.040625,-53.55296875,-53.0653125,-52.58,-52.09,-51.265,-50.665,-49.765,-49.165,-48.335,-47.8375,-46.635,-45.785,-44.935,-44.195,-43.695,-43.023125,-42.35125,-41.679375,-41.0075,-40.5075,-39.93,-39.43,-38.71375,-37.9975,-37.28125,-36.565,-36.065,-35.24,-34.64,-33.74,-33.14,-32.3125,-31.8175,-31.335,-30.8475,-30.36,-29.69796875,-29.145,-28.463125,-27.9225,-27.435,-26.9475,-26.46,-25.9725,-25.485,-25.00375,-24.51,-24.01,-23.51,-22.880625,-22.25125,-20.9925,-18.475,-15.9575,-14.69875,-14.069375,-13.44,-12.94,-12.44,-11.94,-11.44,-10.49,-9.99,-9.36529279070317,-8.55317341861729,-7.49741823490564,-6.1249364960805,-4.34071023560782,-2.02121609699334,0.994126283205492,4.91407137746397,10.01</XLines>
<YLines Qty="91">-83.9,-78.9289216287161,-75.105015189267,-72.163548697383,-69.9008821651646,-68.1603694480735,-66.8215135118495,-65.7916243301388,-64.9994018826691,-64.39,-63.895,-63.395,-62.895,-62.11,-61.325,-60.825,-60.325,-59.825,-59.325,-58.26,-57.195,-56.695,-56.195,-55.695,-55.195,-54.0475,-52.9,-52.4,-51.9,-51.075,-50.44265625,-50.015,-49.47109375,-48.955,-48.49953125,-48.055,-47.52796875,-46.995,-46.5159375,-46.095,-45.58484375,-45.035,-44.6196875,-44.1275,-43.6275,-43.075,-42.175,-41.6275,-41.1275,-40.63671875,-40.215,-39.66921875,-39.155,-38.69703125,-38.255,-37.72484375,-37.195,-36.75265625,-36.295,-35.78046875,-35.235,-34.80828125,-34.175,-33.3525,-32.83875,-32.33875,-31.201875,-30.065,-29.565,-29.065,-28.565,-28.065,-27,-25.935,-25.435,-24.935,-24.435,-23.935,-23.1475,-22.36,-21.86,-21.36,-20.7352927907032,-19.9231734186173,-18.8674182349056,-17.4949364960805,-15.7107102356078,-13.3912160969933,-10.3758737167945,-6.45592862253603,-1.36</YLines>
<ZLines Qty="61">0,9.375,18.75,28.125,37.5,46.875,56.25,65.625,75,84.375,93.75,103.125,112.5,121.875,131.25,140.625,145.3125,150,151.875,153.75,154.75,155.75,156.24,156.78,157.27,157.81,158.3,158.84,159.33,160.1803,160.6803,161.6803,162.1803,163.5803,164.9803,165.4803,166.4803,167.4803,167.9803,168.7303,169.4803,169.8803,171.052175,172.22405,174.5678,179.2553,188.6303,198.0053,207.3803,216.7553,226.1303,235.5053,244.8803,254.2553,263.6303,273.0053,282.3803,291.7553,301.1303,310.5053,319.8803</ZLines>
</RectilinearGrid>
<BackgroundMaterial Epsilon="1" Mue="1" Kappa="0" Sigma="0" />
<ParameterSet />
@ -601,8 +601,8 @@
<EdgeColor R="208" G="208" B="208" a="20" />
<Primitives>
<Box Priority="10">
<P1 X="-1.744100e+02" Y="-1.639000e+02" Z="1.698803e+02" />
<P2 X="9.001000e+01" Y="7.864000e+01" Z="3.198803e+02" />
<P1 X="-9.441000e+01" Y="-8.390000e+01" Z="1.698803e+02" />
<P2 X="1.001000e+01" Y="-1.360000e+00" Z="3.198803e+02" />
</Box>
</Primitives>
<Property Epsilon="1.000000e+00,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="0.000000e+00,0.000000e+00,0.000000e+00" Sigma="0.000000e+00,0.000000e+00,0.000000e+00" Density="0.000000e+00" />
@ -613,8 +613,8 @@
<EdgeColor R="160" G="160" B="240" a="20" />
<Primitives>
<Box Priority="10">
<P1 X="-1.744100e+02" Y="-1.639000e+02" Z="1.694803e+02" />
<P2 X="9.001000e+01" Y="7.864000e+01" Z="1.698803e+02" />
<P1 X="-9.441000e+01" Y="-8.390000e+01" Z="1.694803e+02" />
<P2 X="1.001000e+01" Y="-1.360000e+00" Z="1.698803e+02" />
</Box>
</Primitives>
<Property Epsilon="6.600000e+00,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="0.000000e+00,0.000000e+00,0.000000e+00" Sigma="0.000000e+00,0.000000e+00,0.000000e+00" Density="0.000000e+00" />
@ -625,8 +625,8 @@
<EdgeColor R="255" G="252" B="173" a="20" />
<Primitives>
<Box Priority="10">
<P1 X="-1.744100e+02" Y="-1.639000e+02" Z="1.537500e+02" />
<P2 X="9.001000e+01" Y="7.864000e+01" Z="1.694803e+02" />
<P1 X="-9.441000e+01" Y="-8.390000e+01" Z="1.537500e+02" />
<P2 X="1.001000e+01" Y="-1.360000e+00" Z="1.694803e+02" />
</Box>
</Primitives>
<Property Epsilon="4.100000e+00,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="0.000000e+00,0.000000e+00,0.000000e+00" Sigma="0.000000e+00,0.000000e+00,0.000000e+00" Density="0.000000e+00" />
@ -637,8 +637,8 @@
<EdgeColor R="41" G="79" B="255" a="20" />
<Primitives>
<Box Priority="10">
<P1 X="-1.744100e+02" Y="-1.639000e+02" Z="1.500000e+02" />
<P2 X="9.001000e+01" Y="7.864000e+01" Z="1.537500e+02" />
<P1 X="-9.441000e+01" Y="-8.390000e+01" Z="1.500000e+02" />
<P2 X="1.001000e+01" Y="-1.360000e+00" Z="1.537500e+02" />
</Box>
</Primitives>
<Property Epsilon="1.190000e+01,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="5.000000e+00,0.000000e+00,0.000000e+00" Sigma="0.000000e+00,0.000000e+00,0.000000e+00" Density="0.000000e+00" />
@ -649,14 +649,14 @@
<EdgeColor R="1" G="224" B="255" a="20" />
<Primitives>
<Box Priority="10">
<P1 X="-1.744100e+02" Y="-1.639000e+02" Z="0.000000e+00" />
<P2 X="9.001000e+01" Y="7.864000e+01" Z="1.500000e+02" />
<P1 X="-9.441000e+01" Y="-8.390000e+01" Z="0.000000e+00" />
<P2 X="1.001000e+01" Y="-1.360000e+00" Z="1.500000e+02" />
</Box>
</Primitives>
<Property Epsilon="1.190000e+01,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="2.000000e+00,0.000000e+00,0.000000e+00" Sigma="0.000000e+00,0.000000e+00,0.000000e+00" Density="0.000000e+00" />
<Weight Epsilon="1.000000e+00,1.000000e+00,1.000000e+00" Mue="1.000000e+00,1.000000e+00,1.000000e+00" Kappa="1.000000e+00,1.000000e+00,1.000000e+00" Sigma="1.000000e+00,1.000000e+00,1.000000e+00" Density="1.000000e+00" />
</Material>
<LumpedElement ID="16" Name="port_resist_1" Direction="2" Caps="1" R="5.000000e+01" C="nan" L="nan">
<LumpedElement ID="16" Name="port_resist_1" Direction="2" Caps="1" R="5.000000e+01" C="nan" L="nan" LEtype="0.000000e+00">
<FillColor R="108" G="5" B="172" a="255" />
<EdgeColor R="108" G="5" B="172" a="255" />
<Primitives>
@ -686,7 +686,7 @@
</Box>
</Primitives>
</ProbeBox>
<LumpedElement ID="19" Name="port_resist_2" Direction="2" Caps="1" R="5.000000e+01" C="nan" L="nan">
<LumpedElement ID="19" Name="port_resist_2" Direction="2" Caps="1" R="5.000000e+01" C="nan" L="nan" LEtype="0.000000e+00">
<FillColor R="162" G="190" B="112" a="255" />
<EdgeColor R="162" G="190" B="112" a="255" />
<Primitives>
@ -716,7 +716,7 @@
</Box>
</Primitives>
</ProbeBox>
<LumpedElement ID="22" Name="port_resist_3" Direction="0" Caps="1" R="5.000000e+01" C="nan" L="nan">
<LumpedElement ID="22" Name="port_resist_3" Direction="0" Caps="1" R="5.000000e+01" C="nan" L="nan" LEtype="0.000000e+00">
<FillColor R="54" G="148" B="179" a="255" />
<EdgeColor R="54" G="148" B="179" a="255" />
<Primitives>
@ -726,7 +726,7 @@
</Box>
</Primitives>
</LumpedElement>
<Excitation ID="23" Name="port_excite_3" Number="0" Frequency="0.000000e+00" Delay="0.000000e+00" Type="0" Excite="1.000000e+00,0.000000e+00,0.000000e+00" PropDir="0.000000e+00,0.000000e+00,0.000000e+00">
<Excitation ID="23" Name="port_excite_3" Number="0" Enabled="1" Frequency="0.000000e+00" Delay="0.000000e+00" Type="0" Excite="1.000000e+00,0.000000e+00,0.000000e+00" PropDir="0.000000e+00,0.000000e+00,0.000000e+00">
<FillColor R="175" G="226" B="240" a="255" />
<EdgeColor R="175" G="226" B="240" a="255" />
<Primitives>
@ -757,7 +757,7 @@
</Box>
</Primitives>
</ProbeBox>
<LumpedElement ID="26" Name="port_resist_4" Direction="0" Caps="1" R="5.000000e+01" C="nan" L="nan">
<LumpedElement ID="26" Name="port_resist_4" Direction="0" Caps="1" R="5.000000e+01" C="nan" L="nan" LEtype="0.000000e+00">
<FillColor R="253" G="130" B="78" a="255" />
<EdgeColor R="253" G="130" B="78" a="255" />
<Primitives>

View File

@ -0,0 +1 @@
efb0748917fc6e14e30db7b24223c202d10f718b6d31ad6073d2473e82feb17a

Some files were not shown because too many files have changed in this diff Show More